Skip to content

Commit 08eff9c

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

File tree

23 files changed

+2481
-0
lines changed

23 files changed

+2481
-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: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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("commonlib") {
16+
version.set(">= 1.17.0 & < 2.0.0")
17+
}
18+
register("pscan") {
19+
version.set(">= 0.1.0 & < 1.0.0")
20+
}
21+
}
22+
}
23+
}
24+
25+
apiClientGen {
26+
api.set("org.zaproxy.addon.params.ParamsAPI")
27+
}
28+
}
29+
30+
crowdin {
31+
configuration {
32+
val path = "org/zaproxy/addon/params/resources/"
33+
tokens.put("%messagesPath%", path)
34+
tokens.put("%helpPath%", path)
35+
}
36+
}
37+
38+
dependencies {
39+
zapAddOn("pscan")
40+
41+
testImplementation(project(":testutils"))
42+
testImplementation(libs.log4j.core)
43+
}

0 commit comments

Comments
 (0)