29 lines
625 B
Plaintext
29 lines
625 B
Plaintext
plugins {
|
|
kotlin("jvm") version "2.0.10"
|
|
}
|
|
|
|
group = "io.unitedgold"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://gitea.sergeych.net/api/packages/SergeychWorks/maven")
|
|
maven("https://maven.universablockchain.com")
|
|
maven("https://gitea.sergeych.net/api/packages/YoungBlood/maven")
|
|
mavenLocal()
|
|
}
|
|
|
|
val apiVersion = "0.0.1-SNAPSHOT"
|
|
|
|
dependencies {
|
|
implementation("io.unitedgold.api:shared:$apiVersion")
|
|
implementation("ch.qos.logback:logback-classic:1.5.18")
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |