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

@ -262,7 +262,7 @@ var semverProcessor = "net.thauvin.erik:semver:1.2.0"
dependencies { dependencies {
kapt(semverProcessor) kapt(semverProcessor)
implementation (semverProcessor) implementation(semverProcessor)
} }
kapt { kapt {
@ -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): The directory containing the properties file (`version.properties`) must be specified using the `semver.project.dir` processor argument.
```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).
## Kobalt ## Kobalt

View file

@ -1,7 +1,7 @@
plugins { plugins {
kotlin("jvm").version("1.3.31") kotlin("jvm").version("1.3.41")
application 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") id("com.github.ben-manes.versions").version("0.21.0")
} }