org.zaproxy.add-on
Owner:
zapbot - ZAP helper bot
A Gradle plugin to (help) build ZAP add-ons.
https://github.com/zaproxy/gradle-plugin-add-on
Sources: https://github.com/zaproxy/gradle-plugin-add-on.git
Version 0.12.0 (latest)
Created 04 December 2024.
A Gradle plugin to (help) build ZAP add-ons.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.zaproxy.add-on") version "0.12.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("org.zaproxy.add-on:org.zaproxy.add-on.gradle.plugin:0.12.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.zaproxy.add-on") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.zaproxy.add-on:org.zaproxy.add-on.gradle.plugin:0.12.0") } } apply(plugin = "org.zaproxy.add-on")
- Applying plugins to all subprojects .