Search Gradle plugins

Version 0.13.3

Created 26 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.3"
}

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("name.remal.kotlin-settings:name.remal.kotlin-settings.gradle.plugin:0.13.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("name.remal.kotlin-settings")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal.kotlin-settings:name.remal.kotlin-settings.gradle.plugin:0.13.3")
      }
    }
    
    apply(plugin = "name.remal.kotlin-settings")
  • Applying plugins to all subprojects .