You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
kotlinOptions {
|
|
freeCompilerArgs += "-Xjsr305=strict"
|
|
languageVersion = "1.2"
|
|
apiVersion = "1.0"
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
dokkaPlugin
|
|
dokkaAndroidPlugin
|
|
dokkaFatJar
|
|
}
|
|
|
|
dependencies {
|
|
|
|
testCompileOnly group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlin_for_gradle_runtime_version
|
|
testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: kotlin_for_gradle_runtime_version
|
|
testCompile ideaRT()
|
|
|
|
dokkaPlugin project(path: ':runners:gradle-plugin', configuration: 'shadow')
|
|
dokkaAndroidPlugin project(path: ':runners:android-gradle-plugin', configuration: 'shadow')
|
|
dokkaFatJar project(path: ":runners:fatjar", configuration: 'shadow')
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
testCompile gradleTestKit()
|
|
}
|
|
|
|
|
|
|
|
task createClasspathManifest {
|
|
def outputDir = file("$buildDir/$name")
|
|
|
|
inputs.files(configurations.dokkaPlugin + configurations.dokkaAndroidPlugin + configurations.dokkaFatJar)
|
|
outputs.dir outputDir
|
|
|
|
doLast {
|
|
outputDir.mkdirs()
|
|
file("$outputDir/dokka-plugin-classpath.txt").text = configurations.dokkaPlugin.join("\n")
|
|
file("$outputDir/android-dokka-plugin-classpath.txt").text = configurations.dokkaAndroidPlugin.join("\n")
|
|
file("$outputDir/fatjar.txt").text = configurations.dokkaFatJar.join("\n")
|
|
}
|
|
}
|
|
|
|
|
|
createClasspathManifest.mustRunAfter project(":runners:fatjar").shadowJar
|
|
testClasses.dependsOn project(":runners:fatjar").shadowJar
|
|
testClasses.dependsOn createClasspathManifest
|
|
|
|
test {
|
|
systemProperty "android.licenses.overwrite", project.findProperty("android.licenses.overwrite") ?: ""
|
|
} |