Princeton1/clients/build.gradle
2025-02-02 01:12:22 +05:30

26 lines
445 B
Groovy

plugins {
id 'java'
}
group = 'com.hithomelabs'
version = 'unspecified'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation project(':module4')
implementation project(':module5')
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
test {
useJUnitPlatform()
}