Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions addOns/params/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this add-on will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
### Changed

- Migrated from core.

[0.1.0]: https://github.com/zaproxy/zap-extensions/releases/params-v0.0.1
2 changes: 2 additions & 0 deletions addOns/params/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version=0.0.1
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.1.0?

release=false
40 changes: 40 additions & 0 deletions addOns/params/params.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import org.zaproxy.gradle.addon.AddOnStatus

description = "Tracks parameters, cookies, and header values on a site by site basis."

zapAddOn {
addOnName.set("Params")
addOnStatus.set(AddOnStatus.RELEASE)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Different status?


manifest {
author.set("ZAP Dev Team")
url.set("https://www.zaproxy.org/docs/desktop/addons/params/")

dependencies {
addOns {
register("pscan") {
version.set(">= 0.1.0 & < 1.0.0")
}
}
}
}

apiClientGen {
api.set("org.zaproxy.addon.params.ParamsAPI")
}
}

crowdin {
configuration {
val path = "org/zaproxy/addon/params/resources/"
tokens.put("%messagesPath%", path)
tokens.put("%helpPath%", path)
}
}

dependencies {
zapAddOn("pscan")

testImplementation(project(":testutils"))
testImplementation(libs.log4j.core)
}
Loading