1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 08:38:13 -07:00

Update to RC.

This commit is contained in:
Cedric Beust 2016-02-05 22:52:12 +04:00
parent 0e2e946884
commit c27ec46e73
13 changed files with 24 additions and 18 deletions

View file

@ -37,7 +37,7 @@ abstract class BuildGenerator : IInitContributor<File> {
}
val properties = pom.properties
val mapped = properties.entries.toMapBy({ it.key }, { ProjectGenerator.toIdentifier(it.key) })
val mapped = properties.entries.associateBy({ it.key }, { ProjectGenerator.toIdentifier(it.key) })
map.put("properties", properties.entries.map({ Pair(mapped[it.key], it.value) }))

View file

@ -32,7 +32,7 @@ class KotlinCompiler @Inject constructor(
val executors: KobaltExecutors,
val jvmCompiler: JvmCompiler) {
companion object {
val KOTLIN_VERSION = "1.0.0-beta-4584"
val KOTLIN_VERSION = "1.0.0-rc-1036"
}
val compilerAction = object: ICompilerAction {