51590ef1b7
kotlin plugin versions
27 lines
501 B
Groovy
Vendored
27 lines
501 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:{{kotlin_plugin_version}}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
|
}
|
|
|
|
compileKotlin {
|
|
javaPackagePrefix = "package.prefix.main"
|
|
}
|
|
|
|
compileTestKotlin {
|
|
javaPackagePrefix = "package.prefix.test"
|
|
}
|
|
|