Files
kotlin-fork/libraries/tools/kotlin-gradle-plugin-api/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

26 lines
455 B
Groovy

apply plugin: 'kotlin'
apply plugin: 'maven'
configureJvmProject(project)
configurePublishing(project)
repositories {
mavenLocal()
maven { url 'http://repository.jetbrains.com/utils/' }
}
dependencies {
compile project(':kotlin-stdlib')
compileOnly gradleApi()
compileOnly 'com.android.tools.build:gradle:0.4.2'
}
artifacts {
archives sourcesJar
archives javadocJar
}
jar {
manifestAttributes(manifest, project)
}