diff --git a/CHANGELOG.md b/CHANGELOG.md index 904869dc1..6013c2cbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/build.gradle.kts b/build.gradle.kts index 39a096c3b..d78042d05 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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." @@ -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@PREVIOUS_VERSION@...v@CURRENT_VERSION@") unreleasedLink.set("https://github.com/zaproxy/zap-hud/compare/v@CURRENT_VERSION@...HEAD") @@ -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))