org.zaproxy.add-on
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.9.0 (latest)
Created 15 March 2023.
A Gradle plugin to (help) build ZAP add-ons.
Using the plugins DSL:
plugins {
id("org.zaproxy.add-on") version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.zaproxy.gradle:gradle-plugin-add-on:0.9.0")
}
}
apply(plugin = "org.zaproxy.add-on")
Using the plugins DSL:
plugins {
id "org.zaproxy.add-on" version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.zaproxy.gradle:gradle-plugin-add-on:0.9.0"
}
}
apply plugin: "org.zaproxy.add-on"