Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.SoSeDiK:CS-CoreLib:v1.5.18'
}
dependencies {
implementation("com.github.SoSeDiK:CS-CoreLib:v1.5.18")
}
<dependency>
<groupId>com.github.SoSeDiK</groupId>
<artifactId>CS-CoreLib</artifactId>
<version>v1.5.18</version>
</dependency>
libraryDependencies += "com.github.SoSeDiK" % "CS-CoreLib" % "v1.5.18"
:dependencies [[com.github.SoSeDiK/CS-CoreLib "v1.5.18"]]
CS-CoreLib is an essential Library to a couple of Bukkit Plugins which require CS-CoreLib.
CS-CoreLib is licensed under GNU GPLv3
Click on the badge below to go to our "development" build page, where you can download the latest versions before they are released to the public. But keep in mind: These builds are still in development and not guaranteed to work or to be stable.
<p align="center"> <a href="https://thebusybiscuit.github.io/builds/TheBusyBiscuit/CS-CoreLib/master/"> <img src="https://thebusybiscuit.github.io/builds/TheBusyBiscuit/CS-CoreLib/master/badge.svg" alt="Build Server"/> </a> </p>You are allowed, even encouraged, to contribute to CS-CoreLib by making Pull Requests. These Pull Requests can be Fixes, Changes or even Additions, it is your choice.
Check the license for more Info on redistributing and modifying CS-CoreLib.
Here is a list of all people who contributed to CS-CoreLib by submitting Code.