Search Gradle plugins

Version 0.13.1

0.13.1

Created 25 August 2017.

Plugin that configures Kotlin plugins if some of them are applied.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.kotlin-settings") version "0.13.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.name.remal:gradle-plugins:0.13.1")
      }
    }
    
    apply(plugin = "name.remal.kotlin-settings")
  • Applying plugins to all subprojects .