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.thebusybiscuit:cs-corelib:1.7'
}
dependencies {
implementation("com.github.thebusybiscuit:cs-corelib:1.7")
}
<dependency>
<groupId>com.github.thebusybiscuit</groupId>
<artifactId>cs-corelib</artifactId>
<version>1.7</version>
</dependency>
libraryDependencies += "com.github.thebusybiscuit" % "cs-corelib" % "1.7"
:dependencies [[com.github.thebusybiscuit/cs-corelib "1.7"]]
CS-CoreLib is a very old library for some of my older plugins.<br> It isn't updated anymore but still required for running Slimefun4 as of now.
You were probably looking for this: https://github.com/TheBusyBiscuit/CS-CoreLib2
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>This project is licensed under GNU GPLv3