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