Search Gradle plugins

ch.tutteli.kotlin

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.

Using the plugins DSL:

plugins {
  id("ch.tutteli.kotlin") version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.tutteli:tutteli-gradle-kotlin:0.6.0")
  }
}

apply(plugin = "ch.tutteli.kotlin")

Using the plugins DSL:

plugins {
  id "ch.tutteli.kotlin" version "0.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.tutteli:tutteli-gradle-kotlin:0.6.0"
  }
}

apply plugin: "ch.tutteli.kotlin"

Learn how to apply plugins to subprojects