com.mrhaki.groovyrun
Owner: Hubert Klein Ikkink
Plugin for running Groovy scripts with same options as from the Groovy command line
https://github.com/mrhaki/groovyrun-gradle-plugin
Sources: https://github.com/mrhaki/groovyrun-gradle-plugin
Version 1.0.1.RELEASE (latest)
Created 11 February 2016.
Plugin for running Groovy scripts with same options as from the Groovy command line
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mrhaki.groovyrun") version "1.0.1.RELEASE"
}
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("com.mrhaki.groovyrun:com.mrhaki.groovyrun.gradle.plugin:1.0.1.RELEASE") }
It can then be applied in the precompiled script plugin:plugins { id("com.mrhaki.groovyrun") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mrhaki.groovyrun:com.mrhaki.groovyrun.gradle.plugin:1.0.1.RELEASE") } } apply(plugin = "com.mrhaki.groovyrun")
- Applying plugins to all subprojects .