30 lines
415 B
Groovy
30 lines
415 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
group = 'com.cstest'
|
|
version = '0.1.0'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.2')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'com.cstest.App'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|