678caa5676
Build parameters (with corresponding project properties): - build.number (buildNumber) - build number from build server, goes into manifest, by default snapshot - deployVersion (kotlinVersion, project.version) - version of artifacts, by default build.number - bootstrap.kotlin.version (bootstrapKotlinVersion) - version of bootstrap compiler
12 lines
231 B
Groovy
12 lines
231 B
Groovy
description = 'Merge utility for Kotlin Standard Library for JS'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-compiler:$bootstrapKotlinVersion"
|
|
}
|
|
|
|
sourceSets {
|
|
main.kotlin.srcDirs += 'src'
|
|
}
|