ch.tutteli.kotlin.utils
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.8.0
0.8.0
Created 24 June 2018.
Provides a few utility functions which makes it easier to manage kotlin projects.
Using the plugins DSL:
plugins {
id("ch.tutteli.kotlin.utils") version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.tutteli:tutteli-gradle-kotlin-utils:0.8.0")
}
}
apply(plugin = "ch.tutteli.kotlin.utils")
Using the plugins DSL:
plugins {
id "ch.tutteli.kotlin.utils" version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.tutteli:tutteli-gradle-kotlin-utils:0.8.0"
}
}
apply plugin: "ch.tutteli.kotlin.utils"