mirror of
https://github.com/LamGC/ScalaBot.git
synced 2025-04-30 06:37:29 +00:00
21 lines
352 B
Plaintext
21 lines
352 B
Plaintext
plugins {
|
|
java
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":scalabot-extension"))
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
}
|
|
|
|
tasks.getByName<Test>("test") {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType<Javadoc> {
|
|
options {
|
|
encoding = "UTF-8"
|
|
}
|
|
}
|