/AdvancedCore

Core API for my plugins on SpigotMC

Primary LanguageJava

AdvancedCore

API used in the plugins developed by BenCodez, can be used in any project.

Download

License

This project is licensed under the Creative Commons Attribution 3.0 Unported license.

Read it here

How to use

Use the following code in Maven:

<repository>
    <id>BenCodez Repo</id>
    <url>https://nexus.bencodez.com/repository/maven-public/</url>
</repository>

<dependency>
    <groupId>com.bencodez</groupId>
    <artifactId>advancedcore</artifactId>
    <version>LATEST</version>
    <scope>provided</scope>
</dependency>

BACKUP/OLD WAY
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.BenCodez</groupId>
    <artifactId>AdvancedCore</artifactId>
    <version>LATEST</version>
    <scope>provided</scope>
</dependency>

In Gradle:

repositories {
    maven { url "https://nexus.bencodez.com/repository/maven-public/" }
}
dependencies {
    compile "com.bencodez:advancedcore:LATEST"
}

Versions:
LATEST - latest stable release
Check out all tags on the releases tab.