Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Fix deps + package scheme for responses
Browse files Browse the repository at this point in the history
  • Loading branch information
sdford committed Apr 23, 2018
1 parent 653dbba commit b98c364
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 42 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
version=5.0.0-rc.1
version=5.0.0-rc.2
groupId=com.nike
artifactId=cerberus-client
2 changes: 2 additions & 0 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ dependencies {
shadow "joda-time:joda-time:2.8.1"
shadow "org.apache.commons:commons-lang3:3.4"
shadow "org.slf4j:slf4j-api:1.7.25"
shadow "com.google.code.gson:gson:2.5"
shadow "com.google.code.findbugs:jsr305:3.0.1"

compile "com.squareup.okhttp3:okhttp:3.9.0"
compile "org.apache.commons:commons-lang3:3.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@

import com.fieldju.commons.EnvUtils;
import com.nike.cerberus.client.CerberusClient;
import com.nike.cerberus.client.CerberusListResponse;
import com.nike.cerberus.client.CerberusResponse;
import com.nike.cerberus.client.CerberusServerException;
import com.nike.cerberus.client.DefaultCerberusUrlResolver;
import com.nike.cerberus.client.model.CerberusListResponse;
import com.nike.cerberus.client.model.CerberusResponse;
import okhttp3.OkHttpClient;
import org.apache.commons.lang3.RandomStringUtils;
import org.junit.BeforeClass;
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/nike/cerberus/client/CerberusClient.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.nike.cerberus.client;

import com.google.gson.ExclusionStrategy;
import com.google.gson.FieldNamingPolicy;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
Expand All @@ -10,6 +9,8 @@
import com.nike.cerberus.client.http.HttpHeader;
import com.nike.cerberus.client.http.HttpMethod;
import com.nike.cerberus.client.http.HttpStatus;
import com.nike.cerberus.client.model.CerberusListResponse;
import com.nike.cerberus.client.model.CerberusResponse;
import okhttp3.Headers;
import okhttp3.HttpUrl;
import okhttp3.MediaType;
Expand Down
17 changes: 0 additions & 17 deletions src/main/java/com/nike/cerberus/client/CerberusListResponse.java

This file was deleted.

21 changes: 0 additions & 21 deletions src/main/java/com/nike/cerberus/client/CerberusResponse.java

This file was deleted.

0 comments on commit b98c364

Please sign in to comment.