29 lines
No EOL
687 B
Groovy
29 lines
No EOL
687 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'org.jetbrains.dokka'
|
|
|
|
dependencies {
|
|
implementation libraries.kotlinStdLib
|
|
implementation libraries.coroutinesCore
|
|
testImplementation libraries.junit
|
|
testImplementation libraries.coroutinesTest
|
|
testImplementation libraries.truth
|
|
}
|
|
group = GROUP
|
|
version = VERSION_NAME
|
|
apply from: rootProject.file("gradle/maven-push.gradle")
|
|
apply from: rootProject.file("gradle/checkstyle.gradle")
|
|
apply from: rootProject.file("gradle/pmd.gradle")
|
|
|
|
targetCompatibility = 1.8
|
|
sourceCompatibility = 1.8
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
} |