The API for ClansLite.
When adding this jar to your project, remember to exclude from your plugin at build and just depend on it as the API itself is provided by the main ClansLite jar!
- Repository:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- Dependency
<dependency>
<groupId>com.github.CraptiCraft-Development</groupId>
<artifactId>ClansLite-API</artifactId>
<version>[CURRENT-VERSION]</version>
<scope>provided</scope>
</dependency>
- build.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
- Dependency
dependencies {
implementation 'com.github.CraptiCraft-Development:ClansLite-API:[CURRENT-VERSION]'
}