Skip to content

Commit

Permalink
Merge pull request #13 from EMCECS/bugfix-build-update
Browse files Browse the repository at this point in the history
update build.gradle
  • Loading branch information
dongyeh authored Apr 29, 2021
2 parents 1efde50 + 28c7cf9 commit 34a10d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ plugins {
id 'idea'
id 'eclipse'
id 'java'
id 'java-library'
id 'net.saliman.cobertura' version '3.0.0'
id 'distribution'
id 'signing'
Expand All @@ -38,7 +39,6 @@ plugins {

group 'com.emc.ecs'
description = 'Smart REST Client - JAX-RS (Jersey) REST client that provides client-side load balancing with a pluggable host list provider'
version '2.3.0'

// name of the github project repository
ext.githubProjectName = 'smart-client-java'
Expand All @@ -59,15 +59,15 @@ repositories {
}

dependencies {
implementation 'com.sun.jersey:jersey-client:1.19.4',
api 'com.sun.jersey:jersey-client:1.19.4',
'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.1',
'com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.12.1',
'org.apache.httpcomponents:httpclient:4.2.6',
'org.slf4j:slf4j-api:1.7.5'
implementation ('com.sun.jersey:jersey-json:1.19.4') {
exclude group: 'org.codehaus.jackson'
}
implementation 'com.sun.jersey.contribs:jersey-apache-client4:1.19.4'
api 'com.sun.jersey.contribs:jersey-apache-client4:1.19.4'

runtimeOnly 'org.slf4j:slf4j-log4j12:1.7.5'
testImplementation 'junit:junit:4.12',
Expand Down

0 comments on commit 34a10d7

Please sign in to comment.