Search Gradle plugins

Version 1.2.2

1.2.2

Created 17 January 2021.

Plugin that configures Kotlin plugins if some of them are applied. Min Gradle version: 4.5.

Add this plugin to your build using the plugins DSL:

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

See also:

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