26 lines
497 B
Plaintext
26 lines
497 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "ru.dbotthepony.kstarbound"
|
|
version = "0.4.4"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
java.toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
implementation("org.ow2.asm:asm:9.2")
|
|
implementation("org.ow2.asm:asm-tree:9.2")
|
|
implementation("org.ow2.asm:asm-util:9.2")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|