Skip to content

Commit 1ca7afc

Browse files
author
wreulicke
committed
change to implicit version
1 parent b6a5996 commit 1ca7afc

File tree

18 files changed

+50
-47
lines changed

18 files changed

+50
-47
lines changed

spar-wings-aws-essential/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
description "Essential support library for AWS Java SDK in Spring framework environment."
44

55
dependencies {
6-
compile "org.springframework:spring-beans:$springVersion"
6+
compile "org.springframework:spring-beans"
77
compile "com.amazonaws:aws-java-sdk-core:$awsJavaSdkVersion"
88
}

spar-wings-aws-logging/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
description "Servlet filter which adds EC2 instance metadata to SLF4J MDC."
44

55
dependencies {
6-
compile "javax.servlet:javax.servlet-api:3.1.0"
7-
compile "org.springframework:spring-web:$springVersion"
6+
compileOnly "javax.servlet:javax.servlet-api"
7+
compile "org.springframework:spring-web"
8+
compile "org.springframework:spring-context"
89
compile project(":spar-wings-aws-essential")
910
}

spar-wings-dynamodb-json-patch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
description "Support library for DynamoDB to support JSON Patch (RFC 6902) request."
44

55
dependencies {
6-
// compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
6+
// compile "com.fasterxml.jackson.core:jackson-databind"
77
compile "com.github.fge:jackson-coreutils:1.6"
88
compile "com.amazonaws:aws-java-sdk-dynamodb:$awsJavaSdkVersion"
99

spar-wings-event/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
description "Support library to emit event in JSON"
44

55
dependencies {
6-
compile "org.springframework:spring-context:$springVersion"
6+
compile "org.springframework:spring-context"
77
compile "com.amazonaws:aws-java-sdk-sns:$awsJavaSdkVersion"
8-
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
8+
compile "com.fasterxml.jackson.core:jackson-databind"
99
compile "jp.xet:baseunits:$baseunitsVersion"
1010

1111
testCompile 'com.jayway.jsonpath:json-path-assert:2.2.0'

spar-wings-http-dump/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
description "Servlet filter implementation which dump every HTTP request and response."
44

55
dependencies {
6-
compile "javax.servlet:javax.servlet-api:3.1.0"
7-
compile "org.springframework:spring-web:$springVersion"
6+
compileOnly "javax.servlet:javax.servlet-api"
7+
compile "org.springframework:spring-web"
88
}

spar-wings-httpexceptions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
description "Exceptions for Spring MVC framework to return error HTTP statuses."
44

55
dependencies {
6-
compile "org.springframework:spring-web:$springVersion"
6+
compile "org.springframework:spring-web"
77
}

spar-wings-jackson-essential/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
description "Essential support library for Jackson v2."
44

55
dependencies {
6-
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
6+
compile "com.fasterxml.jackson.core:jackson-databind"
77
testCompile "com.jayway.jsonpath:json-path-assert:2.2.0"
88
}

spar-wings-json-patch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
description "Support library for Spring MVC to support JSON Patch (RFC 6902) request."
44

55
dependencies {
6-
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
6+
compile "com.fasterxml.jackson.core:jackson-databind"
77
compile "com.github.fge:json-patch:1.9"
88
}

spar-wings-monolith/build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@
22

33
dependencies {
44
compile "com.google.guava:guava:18.0"
5-
compile "jp.xet:baseunits:2.13"
6-
compile "javax.servlet:javax.servlet-api:3.1.0"
5+
compile "jp.xet:baseunits:$baseunitsVersion"
6+
compileOnly "javax.servlet:javax.servlet-api"
77
compile "com.googlecode.htmlcompressor:htmlcompressor:1.5.2"
88

9-
compile "javax.json:javax.json-api:1.0"
9+
compile "javax.json:javax.json-api"
1010
compile "org.glassfish:javax.json:1.0.4"
1111

1212
compile "com.amazonaws:aws-java-sdk-dynamodb:$awsJavaSdkVersion"
1313
compile "com.amazonaws:aws-java-sdk-sns:$awsJavaSdkVersion"
1414

15-
compile "org.springframework:spring-web:$springVersion"
16-
compile "org.springframework:spring-webmvc:$springVersion"
17-
compile "org.springframework.security:spring-security-core:$springSecurityVersion"
18-
compile "org.springframework.security:spring-security-config:$springSecurityVersion"
19-
compile "org.springframework.security:spring-security-web:$springSecurityVersion"
15+
compile "org.springframework:spring-web"
16+
compile "org.springframework:spring-webmvc"
17+
compile "org.springframework.security:spring-security-core"
18+
compile "org.springframework.security:spring-security-config"
19+
compile "org.springframework.security:spring-security-web"
2020
compile "org.springframework.security.oauth:spring-security-oauth2:$springSecurityOauth2Version"
21-
compile "org.springframework.retry:spring-retry:$springRetryVersion"
22-
compile "org.springframework.data:spring-data-commons:$springDataVersion"
23-
compile "org.springframework.data:spring-data-redis:1.7.11.RELEASE"
21+
compile "org.springframework.retry:spring-retry"
22+
compile "org.springframework.data:spring-data-commons"
23+
compile "org.springframework.data:spring-data-redis"
2424
compile "redis.clients:jedis:2.5.2"
2525

26-
compile "org.springframework.boot:spring-boot-autoconfigure:1.2.5.RELEASE"
26+
compile "org.springframework.boot:spring-boot-autoconfigure"
2727

2828
compile project(":spar-wings-httpexceptions")
2929
compile project(":spar-wings-aws-essential")

spar-wings-ratelimiter/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
description "Support library for Spring MVC to support HTTP request rate limiter."
44

55
dependencies {
6-
compile "javax.servlet:javax.servlet-api:3.1.0"
7-
compile "org.springframework:spring-webmvc:$springVersion"
8-
compile "org.springframework.security:spring-security-core:$springSecurityVersion"
6+
compileOnly "javax.servlet:javax.servlet-api"
7+
compile "org.springframework:spring-webmvc"
8+
compile "org.springframework.security:spring-security-core"
99
compile "org.springframework.data:spring-data-redis:1.7.11.RELEASE"
1010
compile "redis.clients:jedis:2.5.2"
1111
compile "jp.xet:baseunits:$baseunitsVersion"

0 commit comments

Comments
 (0)