Skip to content

Commit

Permalink
Update ZAP to 2.14
Browse files Browse the repository at this point in the history
Use ZAP 2.14 (SNAPSHOT).

Signed-off-by: thc202 <[email protected]>
  • Loading branch information
thc202 committed Oct 12, 2023
1 parent 4b11672 commit c710760
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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
- Update minimum ZAP version to 2.14.0.

### Fixed
- Update displayed time format to include leading zeros (Issue 1256).
Expand Down
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ apply(from = "$rootDir/gradle/ci.gradle.kts")

repositories {
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}

description = "Display information from ZAP in browser."
Expand All @@ -49,7 +52,7 @@ zapAddOn {
addOnName.set("HUD - Heads Up Display")
addOnStatus.set(AddOnStatus.BETA)

zapVersion.set("2.13.0")
zapVersion.set("2.14.0")

releaseLink.set("https://github.com/zaproxy/zap-hud/compare/v@[email protected]@CURRENT_VERSION@")
unreleasedLink.set("https://github.com/zaproxy/zap-hud/compare/v@[email protected]")
Expand Down Expand Up @@ -140,6 +143,8 @@ java {
}

dependencies {
zap("org.zaproxy:zap:2.14.0-SNAPSHOT")

compileOnly("org.zaproxy.addon:network:0.1.0")
compileOnly(files(fileTree("lib").files))

Expand Down

0 comments on commit c710760

Please sign in to comment.