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

17 lines
210 B
Groovy
Raw Permalink Normal View History

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