Skip to content

Commit

Permalink
Merge pull request #13 from nfl/Removed_dependency_on_spring_web
Browse files Browse the repository at this point in the history
Replaced dependency on spring-web with a more specific dependency on spring-context
  • Loading branch information
sdemchenko authored Jan 8, 2018
2 parents 3d1fc8f + 24f4f9f commit ecf6a4a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
compile 'commons-io:commons-io:2.5'
compile 'com.google.guava:guava:23.5-jre'
compile 'com.jayway.jsonpath:json-path:2.2.0'
compile 'org.springframework:spring-web:4.3.13.RELEASE'
compile 'org.springframework:spring-context:4.3.13.RELEASE'

compile 'com.graphql-java:graphql-java:4.2'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ maven.central.sync=false
sonatype.username=DUMMY_SONATYPE_USER
sonatype.password=DUMMY_SONATYPE_PASSWORD

PROJECT_VERSION=1.0.5
PROJECT_VERSION=1.0.6
PROJECT_GITHUB_REPO_URL=https://github.com/nfl/gold
PROJECT_LICENSE_URL=https://github.com/nfl/gold/blob/master/LICENSE
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package com.nfl.dm.shield.dynamic.exception;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(HttpStatus.UNAUTHORIZED)
public class UnauthorizedException extends RuntimeException {

public UnauthorizedException(String message) {
Expand Down

0 comments on commit ecf6a4a

Please sign in to comment.