Skip to content

Commit

Permalink
Polish dependencies
Browse files Browse the repository at this point in the history
This commit removes needless dependency exclusions.

See spring-projectsgh-824
  • Loading branch information
vpavic committed Jul 10, 2017
1 parent 40b3d07 commit ef69c81
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war'

dependencies {
compile(project(':spring-session-data-redis')) {
exclude module: 'jedis'
}
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "io.lettuce:lettuce-core"
compile "org.webjars:bootstrap"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war'

dependencies {
compile(project(':spring-session-data-redis')) {
exclude module: 'jedis'
}
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "io.lettuce:lettuce-core"
compile "org.webjars:bootstrap"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war'

dependencies {
compile(project(':spring-session-data-redis')) {
exclude module: 'jedis'
}
compile project(':spring-session-data-redis')
compile "io.lettuce:lettuce-core"
compile "org.springframework:spring-webmvc"
compile "org.springframework.security:spring-security-config"
Expand All @@ -19,4 +17,4 @@ dependencies {
testCompile "org.assertj:assertj-core"
testCompile "org.springframework:spring-test"
testCompile "commons-codec:commons-codec"
}
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war'

dependencies {
compile(project(':spring-session-data-redis')) {
exclude module: 'jedis'
}
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "org.springframework.security:spring-security-config"
compile "org.springframework.security:spring-security-web"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war'

dependencies {
compile(project(':spring-session-data-redis')) {
exclude module: 'jedis'
}
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "io.lettuce:lettuce-core"
compile "org.webjars:bootstrap"
Expand Down
4 changes: 1 addition & 3 deletions samples/xml/redis/spring-session-sample-xml-redis.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war'

dependencies {
compile(project(':spring-session-data-redis')) {
exclude module: 'jedis'
}
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "io.lettuce:lettuce-core"
compile "org.webjars:bootstrap"
Expand Down

0 comments on commit ef69c81

Please sign in to comment.