Files
kotlin-fork/libraries/examples/kotlin-gradle-subplugin-example/build.gradle
T
Sergey Igushkin 5deb20543f Get rid of gradle-api artifacts uploaded to and used from JB repo
Remove redundant Maven dependency to `gradle-api` scoped as provided
2018-01-17 18:45:26 +03:00

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()
}