Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project 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]

## [1.17.0] - 2025-12-15
### Added
- Add the APIs of the following add-ons:
Expand Down Expand Up @@ -232,6 +234,7 @@ of the alert (zaproxy/zaproxy#1341), older methods were deprecated.
- First version as "stand alone library", it was migrated from the [zaproxy repository](https://github.com/zaproxy/zaproxy)
and released to Maven Central.

[Unreleased]: https://github.com/zaproxy/zap-api-java/compare/v1.17.0...HEAD
[1.17.0]: https://github.com/zaproxy/zap-api-java/compare/v1.16.0...v1.17.0
[1.16.0]: https://github.com/zaproxy/zap-api-java/compare/v1.15.0...v1.16.0
[1.15.0]: https://github.com/zaproxy/zap-api-java/compare/v1.14.0...v1.15.0
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ subprojects {

group = "org.zaproxy"

version = "1.17.0"
extra["versionBC"] = "1.16.0"
version = "1.18.0-SNAPSHOT"
extra["versionBC"] = "1.17.0"

java {
if (System.getenv("RELEASE") != null) {
Expand Down
4 changes: 2 additions & 2 deletions subprojects/zap-clientapi/zap-clientapi.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ build.dependsOn 'uberJar'
publishing {
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://central.sonatype.com/repository/maven-snapshots/"
url = version.endsWith("SNAPSHOT") ? snapshotsRepoUrl : releasesRepoUrl

if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
Expand Down