25 lines
391 B
Groovy
Vendored
25 lines
391 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
{{kotlin_plugin_repositories}}
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:{{kotlin_plugin_version}}")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
compileKotlin {
|
|
javaPackagePrefix = "package.prefix.main"
|
|
}
|
|
|
|
compileTestKotlin {
|
|
javaPackagePrefix = "package.prefix.test"
|
|
}
|
|
|