katerbase icon indicating copy to clipboard operation
katerbase copied to clipboard

Maven publishment?

Open DeeChael opened this issue 1 year ago • 1 comments

Hi! I found this great project but noticed that you didn;t upload it to maven central or any repo

Will you upload to a repository? Becuz I don't want to put the source code into my project directly.

DeeChael avatar Mar 07 '24 11:03 DeeChael

The project is not on maven central, but you can use it via jitpack. See the example usage at https://github.com/vonox7/golfcoder/blob/main/build.gradle.kts#L26 and https://github.com/vonox7/golfcoder/blob/main/build.gradle.kts#L50-L51:

repositories {
    mavenCentral()
    maven("https://jitpack.io") // Needed for katerbase
}

dependencies {
    ...
    implementation("com.github.studoverse:katerbase:feb131944cef43e6accd101d3b2579e7a0b171b7")
    implementation("org.mongodb:mongodb-driver-sync:4.9.0")
}

vonox7 avatar Mar 07 '24 15:03 vonox7