Skip to content

Commit 824ea3b

Browse files
authored
Merge pull request #81 from Keith-wright/fix/dependency-scope-and-version
fix: update async-http-client to 3.0.6 and change dependency scopes to api
2 parents dc21d7e + afc042a commit 824ea3b

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ java {
4141
}
4242

4343
dependencies {
44-
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
45-
implementation 'org.asynchttpclient:async-http-client:3.0.1'
46-
implementation 'com.google.code.gson:gson:2.8.9'
44+
// These are 'api' because they appear in public method signatures (Issue #78)
45+
api 'org.apache.httpcomponents:httpclient:4.5.13'
46+
api 'org.asynchttpclient:async-http-client:3.0.6' // Updated from 3.0.1 (Issue #79)
47+
api 'com.google.code.gson:gson:2.8.9'
4748

4849
// Force Netty upgrade to resolve CVEs
4950
implementation platform("io.netty:netty-bom:${nettyVersion}")

0 commit comments

Comments
 (0)