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

17 lines
210 B
Groovy
Raw Normal View History

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