24 lines
385 B
Groovy
24 lines
385 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.hithomelabs.princeton1.common'
|
|
version = 'unspecified'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(11)
|
|
}
|
|
}
|
|
test {
|
|
useJUnitPlatform()
|
|
} |