Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1021 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 1021 Bytes

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>

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.