Skip to content

Commit

Permalink
Merge pull request #6167 from thc202/authhelper/exclude-dep
Browse files Browse the repository at this point in the history
authhelper: reduce add-on size
  • Loading branch information
kingthorin authored Feb 6, 2025
2 parents bdcecfe + 721d1c8 commit 891f55a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion addOns/authhelper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ All notable changes to this add-on will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

### Changed
- Reduce add-on size.

## [0.19.0] - 2025-02-04
### Added
Expand Down
5 changes: 4 additions & 1 deletion addOns/authhelper/authhelper.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ dependencies {
zapAddOn("client")
zapAddOn("zest")

implementation("com.github.bastiaanjansen:otp-java:2.1.0")
implementation("com.github.bastiaanjansen:otp-java:2.1.0") {
// Provided by ZAP.
exclude(group = "commons-codec", module = "commons-codec")
}

testImplementation(project(":testutils"))
}

0 comments on commit 891f55a

Please sign in to comment.