d89083cd8c
Defined 4.0 and 1.3.0 as default versions of Gradle and plugin for PluginTargetVersions
Use `{{kotlin_plugin_repositories}}` template in testData of ImportTests
Update "mute" databases for new tests
Add `kotlin.stdlib.default.dependency=false` to some testData
26 lines
452 B
Groovy
Vendored
26 lines
452 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
{{kotlin_plugin_repositories}}
|
|
}
|
|
|
|
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"
|
|
}
|
|
|