gradle-build-action/.github/workflow-samples/java-toolchain/build.gradle

17 lines
210 B
Groovy
Raw Normal View History

2021-12-10 09:35:44 +08:00
plugins {
id 'java'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(16)
}
}
repositories {
mavenCentral()
}
dependencies {
2022-04-03 02:37:16 +08:00
testImplementation('junit:junit:4.13.2')
2021-12-10 09:35:44 +08:00
}