Skip to content

Commit 3468eac

Browse files
minor build updates to ensure apache client logging is available for unit tests (#18)
1 parent 1a1183c commit 3468eac

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

build.gradle

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ext.githubScmUrl = "scm:[email protected]:EMCECS/${githubProjectName}.git"
5050
ext.githubRemoteUrl = "https://github.com/EMCECS/${githubProjectName}.git"
5151
// license info
5252
ext.licenseName = 'The BSD 3-Clause License'
53-
ext.licenseUrl = 'http://opensource.org/licenses/BSD-3-Clause'
53+
ext.licenseUrl = 'https://opensource.org/licenses/BSD-3-Clause'
5454

5555
defaultTasks 'distZip'
5656

@@ -59,19 +59,18 @@ repositories {
5959
}
6060

6161
dependencies {
62-
api 'com.sun.jersey:jersey-client:1.19.4',
63-
'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.4',
64-
'com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.12.4',
65-
'org.apache.httpcomponents:httpclient:4.5.13',
66-
'org.slf4j:slf4j-api:1.7.31'
62+
implementation 'com.sun.jersey:jersey-client:1.19.4'
63+
implementation 'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.4'
64+
implementation 'com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.12.4'
65+
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
66+
implementation 'org.slf4j:slf4j-api:1.7.32'
6767
implementation('com.sun.jersey:jersey-json:1.19.4') {
6868
exclude group: 'org.codehaus.jackson'
6969
}
70-
api 'com.sun.jersey.contribs:jersey-apache-client4:1.19.4'
71-
72-
runtimeOnly 'org.slf4j:slf4j-log4j12:1.7.31'
73-
testImplementation 'junit:junit:4.13.2',
74-
'org.slf4j:slf4j-log4j12:1.7.31'
70+
implementation 'com.sun.jersey.contribs:jersey-apache-client4:1.19.4'
71+
testImplementation 'junit:junit:4.13.2'
72+
testImplementation 'org.slf4j:slf4j-log4j12:1.7.32'
73+
testRuntimeOnly 'org.slf4j:jcl-over-slf4j:1.7.32'
7574
}
7675

7776
allprojects {

0 commit comments

Comments
 (0)