This repository was archived by the owner on Dec 3, 2025. It is now read-only.
Pre-release
Pre-release
bamboo
released this
General Notes
Gradle Script Kotlin v0.4.0 brings further improvements for multi-project builds and it is expected to be included in the upcoming Gradle 3.2 RC1.
The features in this release are also available for immediate use within the latest Gradle Script Kotlin distribution snapshot. To use it, upgrade your Gradle wrapper in the following fashion:
$ cd $YOUR_PROJECT_ROOT
$ gradle wrapper --gradle-distribution-url https://repo.gradle.org/gradle/kotlin-dsl-snapshots-local/gradle-script-kotlin-3.3-20161019131343+0000-all.zip
Updates since v0.3.3
- New
gradleScriptKotlinApi()dependency notation (#118). To enable external andbuildSrcKotlin plugins to take advantage of the Gradle Script Kotlin extensions to the Gradle API. - Simplified
ClassLoaderhierarchy (#119). Which not only fixes many issues with certain combinations of plugins but improves performance as well. - Improved support for Kotlin based
buildSrc(#139). The new sample demonstrates how to take advantage of Kotlin inbuildSrcto write custom tasks and share custom build logic across projects in a multi-project build.