Skip to content

Commit 46f8476

Browse files
committed
Params Initial Relocation
Signed-off-by: kingthorin <[email protected]>
1 parent 219ba74 commit 46f8476

File tree

23 files changed

+2477
-0
lines changed

23 files changed

+2477
-0
lines changed

addOns/params/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this add-on will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## Unreleased
8+
### Changed
9+
10+
- Migrated from core.
11+
12+
[0.1.0]: https://github.com/zaproxy/zap-extensions/releases/params-v0.0.1

addOns/params/gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
version=0.0.1
2+
release=false

addOns/params/params.gradle.kts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import org.zaproxy.gradle.addon.AddOnStatus
2+
3+
description = "Tracks parameters, cookies, and header values on a site by site basis."
4+
5+
zapAddOn {
6+
addOnName.set("Params")
7+
addOnStatus.set(AddOnStatus.RELEASE)
8+
9+
manifest {
10+
author.set("ZAP Dev Team")
11+
url.set("https://www.zaproxy.org/docs/desktop/addons/params/")
12+
13+
dependencies {
14+
addOns {
15+
register("pscan") {
16+
version.set(">= 0.1.0 & < 1.0.0")
17+
}
18+
}
19+
}
20+
}
21+
22+
apiClientGen {
23+
api.set("org.zaproxy.addon.params.ParamsAPI")
24+
}
25+
}
26+
27+
crowdin {
28+
configuration {
29+
val path = "org/zaproxy/addon/params/resources/"
30+
tokens.put("%messagesPath%", path)
31+
tokens.put("%helpPath%", path)
32+
}
33+
}
34+
35+
dependencies {
36+
zapAddOn("pscan")
37+
38+
testImplementation(project(":testutils"))
39+
testImplementation(libs.log4j.core)
40+
}

0 commit comments

Comments
 (0)