io.gitlab.grabl.grabl
Owner: priv name
A Gradle plugin for ABL based on PCT
https://gitlab.com/grabl/grabl
Sources: https://gitlab.com/grabl/grabl
Version 0.0.0-SNAPSHOT
Created 13 November 2017.
A Gradle plugin for ABL based on PCT
Add this plugin to your build using the plugins DSL:
plugins {
id("io.gitlab.grabl.grabl") version "0.0.0-SNAPSHOT"
}
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("io.gitlab.grabl.grabl:io.gitlab.grabl.grabl.gradle.plugin:0.0.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("io.gitlab.grabl.grabl") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.gitlab.grabl.grabl:io.gitlab.grabl.grabl.gradle.plugin:0.0.0-SNAPSHOT") } } apply(plugin = "io.gitlab.grabl.grabl")
- Applying plugins to all subprojects .