Files
kotlin-fork/libraries/tools/kotlin-stdlib-js-merger/build.gradle
T
Ilya Gorbunov 678caa5676 Setup project versions
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
2017-09-20 11:52:01 +02:00

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'
}