Skip to content

Commit

Permalink
authhelper: reduce add-on size
Browse files Browse the repository at this point in the history
Exclude compatible dependency which is provided by core.

Signed-off-by: thc202 <thc202@gmail.com>
  • Loading branch information
thc202 committed Feb 6, 2025
1 parent 4af5899 commit 721d1c8
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 721d1c8

Please sign in to comment.