22 lines
410 B
Kotlin
22 lines
410 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "hytale-server.kotlin"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
}
|
|
|
|
sourceSets {
|
|
getByName("main") {
|
|
java.setSrcDirs(listOf("src"))
|
|
}
|
|
} |