Search Gradle plugins

yakworks.grails-plugin

Owner: 9ci Bot

Plugin providing opinionated defaults for setups in Groovy, Grails and Gradle library/plugin projects

https://github.com/yakworks/gradle-plugins

Sources: https://github.com/yakworks/gradle-plugins.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("yakworks.grails-plugin") version "2.7.5"
}

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