Files
kotlin-fork/libraries/tools/kotlin-gradle-plugin-api/build.gradle
T
Yan Zhulanow ba5836d666 Pill: Introduce pill{} extension to set extended Pill configuration
Also introduce the flavor concept which allows to specify what part of Kotlin project should be imported.
2018-05-15 16:29:45 +03:00

30 lines
458 B
Groovy

apply plugin: 'kotlin'
apply plugin: 'maven'
apply plugin: 'jps-compatible'
configureJvmProject(project)
configurePublishing(project)
repositories {
mavenLocal()
}
pill {
variant = "FULL"
}
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)
}