Files
apollo/game/plugin/build.gradle
T
2018-08-20 01:29:52 +01:00

15 lines
327 B
Groovy

subprojects { subproj ->
if (subproj.buildFile.exists()) {
apply plugin: 'apollo-plugin'
test {
useJUnitPlatform()
}
dependencies {
test.useJUnitPlatform()
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
}
}
}