Owner:
9ci Bot
Plugin providing opinionated defaults for setups in Groovy, Grails and Gradle library/plugin projects
Version 0.1.26
Created 24 April 2018.
Plugin providing opinionated defaults and shipkit setup for Groovy, Grails and Gradle library/plugin projects. Enables hooks for automated releases and versioning and tags with CircleCI.
Add this plugin to your build using the plugins DSL:
plugins {
id("yakworks.grails-plugin") version "0.1.26"
}
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:0.1.26") }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:0.1.26") } } apply(plugin = "yakworks.grails-plugin") - Applying plugins to all subprojects .