mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 00:30:57 -05:00
17 lines
No EOL
208 B
Groovy
17 lines
No EOL
208 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(16)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation('junit:junit:4.12')
|
|
} |