Files
kotlin-fork/idea/testData/gradle/packagePrefixImport/packagePrefixNonMPP/build.gradle
T
2021-03-30 12:34:03 +03:00

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"
}