mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
18 lines
347 B
Groovy
18 lines
347 B
Groovy
allprojects {
|
|
apply(plugin: 'java')
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(8)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.11.3')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
} |