Skip to content

Latest commit

 

History

History
45 lines (41 loc) · 1.1 KB

README.md

File metadata and controls

45 lines (41 loc) · 1.1 KB

Current Version:

ClansLite-API

The API for ClansLite.

IMPORTANT

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!

Adding using Maven

  • 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>

Adding using Gradle

  • 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]'
	}