Skip to content

Commit

Permalink
Awaitility and Hamcrest libraries now declared as implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Feb 21, 2024
1 parent ad36741 commit a1fcea1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## [Unreleased]
### Changed
- Awaitility and Hamcrest libraries now declared as `implementation`, by @HardNorth

## [0.0.3]
### Changed
- All dependencies are now declared as `compileOnly`, by @HardNorth

## [0.0.2]
### Changed
Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,12 @@ dependencies {
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
compileOnly 'org.apache.commons:commons-lang3:3.11'
compileOnly 'org.apache.commons:commons-io:1.3.2'
compileOnly('org.awaitility:awaitility:4.0.2') {

implementation 'org.hamcrest:hamcrest-core:2.2'
implementation('org.awaitility:awaitility:4.0.2') {
exclude group: 'org.hamcrest'
}
compileOnly 'org.hamcrest:hamcrest-core:2.2'

}

release {
Expand Down

0 comments on commit a1fcea1

Please sign in to comment.