ch.tutteli.kotlin
Owner:
Robert Stoll
Provides a few utility functions which makes it easier to manage kotlin projects.
https://github.com/robstoll/tutteli-gradle-plugins
Sources: https://github.com/robstoll/tutteli-gradle-plugins.git
Version 0.6.0 (latest)
Created 11 June 2018.
Provides a few utility functions which makes it easier to manage kotlin projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.tutteli.kotlin") version "0.6.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("ch.tutteli.kotlin:ch.tutteli.kotlin.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("ch.tutteli.kotlin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.tutteli.kotlin:ch.tutteli.kotlin.gradle.plugin:0.6.0") } } apply(plugin = "ch.tutteli.kotlin")
- Applying plugins to all subprojects .