Skip to content

Commit 28c7cf9

Browse files
HaoyuanHaoyuan
authored andcommitted
make the dependencies transitive
1 parent c44f4ee commit 28c7cf9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ plugins {
2828
id 'idea'
2929
id 'eclipse'
3030
id 'java'
31+
id 'java-library'
3132
id 'net.saliman.cobertura' version '3.0.0'
3233
id 'distribution'
3334
id 'signing'
@@ -58,15 +59,15 @@ repositories {
5859
}
5960

6061
dependencies {
61-
implementation 'com.sun.jersey:jersey-client:1.19.4',
62+
api 'com.sun.jersey:jersey-client:1.19.4',
6263
'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.1',
6364
'com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.12.1',
6465
'org.apache.httpcomponents:httpclient:4.2.6',
6566
'org.slf4j:slf4j-api:1.7.5'
6667
implementation ('com.sun.jersey:jersey-json:1.19.4') {
6768
exclude group: 'org.codehaus.jackson'
6869
}
69-
implementation 'com.sun.jersey.contribs:jersey-apache-client4:1.19.4'
70+
api 'com.sun.jersey.contribs:jersey-apache-client4:1.19.4'
7071

7172
runtimeOnly 'org.slf4j:slf4j-log4j12:1.7.5'
7273
testImplementation 'junit:junit:4.12',

0 commit comments

Comments
 (0)