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.
51 lines
1.5 KiB
51 lines
1.5 KiB
/*
|
|
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
|
|
*/
|
|
|
|
import java.util.*
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
val cacheRedirectorEnabled = System.getenv("CACHE_REDIRECTOR")?.toBoolean() == true
|
|
val buildSnapshotTrain = properties["build_snapshot_train"]?.toString()?.toBoolean() == true
|
|
|
|
repositories {
|
|
if (cacheRedirectorEnabled) {
|
|
maven("https://cache-redirector.jetbrains.com/plugins.gradle.org/m2")
|
|
maven("https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-eap")
|
|
maven("https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-dev")
|
|
} else {
|
|
maven("https://plugins.gradle.org/m2")
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
maven("https://dl.bintray.com/kotlin/kotlin-dev")
|
|
}
|
|
|
|
if (buildSnapshotTrain) {
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
kotlinDslPluginOptions {
|
|
experimentalWarning.set(false)
|
|
}
|
|
|
|
val props = Properties().apply {
|
|
file("../gradle.properties").inputStream().use { load(it) }
|
|
}
|
|
|
|
fun version(target: String): String {
|
|
// Intercept reading from properties file
|
|
if (target == "kotlin") {
|
|
val snapshotVersion = properties["kotlin_snapshot_version"]
|
|
if (snapshotVersion != null) return snapshotVersion.toString()
|
|
}
|
|
return props.getProperty("${target}_version")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("gradle-plugin", version("kotlin")))
|
|
implementation("org.jetbrains.dokka:dokka-gradle-plugin:${version("dokka")}")
|
|
}
|