Skip to content

Getting Started

Eric Lam edited this page Jun 13, 2022 · 1 revision

ELDependenci using the GitHub maven package as the maven registry. you may first need to check how to install the package from github.

add the repository into your maven/gradle project.

<repository>
    <id>github</id>
    <url>https://maven.pkg.github.com/ELDependenci/eldependenci</url>
</repository>

then add the dependency based on your platform

For bukkit

<dependency>
    <groupId>org.eldependenci</groupId>
    <artifactId>eldependenci-bukkit</artifactId>
    <version>${latest.version}</version>
    <scope>provided</scope>
</dependency>

For bungeecord

<dependency>
    <groupId>org.eldependenci</groupId>
    <artifactId>eldependenci-bungee</artifactId>
    <version>${latest.version}</version>
    <scope>provided</scope>
</dependency>
Clone this wiki locally