io.err0.err0-gradle-plugin
Owner: Err0 Package
A plugin to enable err0agent to be run with gradle commands
https://github.com/Err0-io/err0-gradle-plugin
Sources: https://github.com/Err0-io/err0-gradle-plugin.git
Version 1.0.0 (latest)
Created 14 December 2022.
A plugin to enable err0agent to be run with gradle commands
Add this plugin to your build using the plugins DSL:
plugins {
id("io.err0.err0-gradle-plugin") version "1.0.0"
}
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.err0.err0-gradle-plugin:io.err0.err0-gradle-plugin.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.err0.err0-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.err0.err0-gradle-plugin:io.err0.err0-gradle-plugin.gradle.plugin:1.0.0") } } apply(plugin = "io.err0.err0-gradle-plugin")
- Applying plugins to all subprojects .