mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
16 lines
379 B
Groovy
16 lines
379 B
Groovy
subprojects { subproj ->
|
|
if (subproj.buildFile.exists()) {
|
|
apply plugin: 'apollo-plugin'
|
|
apply from: "$rootDir/gradle/kotlin.gradle"
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
test.useJUnitPlatform()
|
|
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
|
|
}
|
|
}
|
|
}
|