5deb20543f
Remove redundant Maven dependency to `gradle-api` scoped as provided
24 lines
715 B
Groovy
24 lines
715 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'maven'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
maven { url 'http://repository.jetbrains.com/utils/' }
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':kotlin-gradle-plugin-api')
|
|
// Use this dependency instead when building apart from the other modules:
|
|
// compile "org.jetbrains.kotlin:kotlin-gradle-plugin-api:$kotlin_version"
|
|
|
|
compile project(':kotlin-test::kotlin-test-junit')
|
|
|
|
compileOnly project(path: ":kotlin-stdlib", configuration: "distJar")
|
|
compileOnly project(':compiler')
|
|
compileOnly project(':compiler:plugin-api')
|
|
compileOnly project(':compiler:cli-common')
|
|
compileOnly project(':compiler:cli')
|
|
|
|
compileOnly gradleApi()
|
|
} |