Moved to Kotlin 1.3.41. Fixes #1

This commit is contained in:
Erik C. Thauvin 2019-07-26 21:17:49 -07:00
parent 961a9535de
commit ae44b36283
2 changed files with 4 additions and 10 deletions

View file

@ -272,13 +272,7 @@ kapt {
}
```
The arguments block is not required if `kapt` is configured to use the Gradle Worker API in [gradle.properties](https://github.com/ethauvin/semver/blob/master/examples/kotlin/gradle.properties):
```ini
kapt.use.worker.api=true
```
This option will likely be enabled by default in the future, but is currently not working under Java 10+ see [KT-26203](https://youtrack.jetbrains.net/issue/KT-26203).
The directory containing the properties file (`version.properties`) must be specified using the `semver.project.dir` processor argument.
## Kobalt

View file

@ -1,7 +1,7 @@
plugins {
kotlin("jvm").version("1.3.31")
kotlin("jvm").version("1.3.41")
application
id("org.jetbrains.kotlin.kapt").version("1.3.31")
id("org.jetbrains.kotlin.kapt").version("1.3.41")
id("com.github.ben-manes.versions").version("0.21.0")
}