px32-bot/px32-bot-module/build.gradle.kts

28 lines
No EOL
469 B
Text

plugins {
id("java")
}
group = "net.projecttl"
version = "0.1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
compileOnly(project(":px32-bot-api"))
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks {
processResources {
filesMatching("plugin.json") {
expand(project.properties)
}
}
test {
useJUnitPlatform()
}
}