23 lines
547 B
Groovy
23 lines
547 B
Groovy
|
|
allprojects {
|
||
|
|
group = 'me.ahlroos'
|
||
|
|
version = '1.0-SNAPSHOT'
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
subprojects {
|
||
|
|
apply plugin: 'java'
|
||
|
|
java {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
||
|
|
targetCompatibility = JavaVersion.VERSION_21
|
||
|
|
}
|
||
|
|
dependencies {
|
||
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
||
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||
|
|
}
|
||
|
|
test {
|
||
|
|
useJUnitPlatform()
|
||
|
|
}
|
||
|
|
}
|