Search Gradle plugins

Version 1.0.170

1.0.170

Created 04 February 2020.

Plugin that configures groovy plugin if it applied. Min Gradle version: 4.5.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.groovy-settings") version "1.0.170"
}

See also:

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