mirror of
https://github.com/gradle/actions.git
synced 2025-04-16 15:59:18 +08:00
22 lines
259 B
Plaintext
22 lines
259 B
Plaintext
plugins {
|
|
java
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(16)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
testing {
|
|
suites {
|
|
val test by getting(JvmTestSuite::class) {
|
|
useJUnit()
|
|
}
|
|
}
|
|
}
|