mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 16:49:11 +00:00
22 lines
544 B
Groovy
22 lines
544 B
Groovy
subprojects { subproj ->
|
|
if (subproj.buildFile.exists()) {
|
|
apply plugin: 'apollo-plugin'
|
|
apply from: "$rootDir/gradle/kotlin.gradle"
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
test.useJUnitPlatform()
|
|
implementation group: 'com.google.guava', name: 'guava', version: guavaVersion
|
|
}
|
|
}
|
|
}
|