Move spring-session to spring-session-core

Issue gh-806
This commit is contained in:
Rob Winch
2017-06-16 15:48:36 -05:00
parent 6ad5006280
commit f1319483ee
94 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ apply plugin: 'io.spring.convention.docs'
apply plugin: 'io.spring.convention.spring-test' apply plugin: 'io.spring.convention.spring-test'
dependencies { dependencies {
testCompile project(':spring-session') testCompile project(':spring-session-core')
testCompile project(':spring-session-data-redis') testCompile project(':spring-session-data-redis')
testCompile "org.springframework:spring-jdbc" testCompile "org.springframework:spring-jdbc"
testCompile "org.springframework:spring-messaging" testCompile "org.springframework:spring-messaging"

View File

@@ -1,7 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war' apply plugin: 'io.spring.convention.spring-sample-war'
dependencies { dependencies {
compile project(':spring-session') compile project(':spring-session-core')
compile "org.springframework:spring-web" compile "org.springframework:spring-web"
compile "org.springframework.security:spring-security-config" compile "org.springframework.security:spring-security-config"
compile "org.springframework.security:spring-security-web" compile "org.springframework.security:spring-security-web"

View File

@@ -1,7 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-war' apply plugin: 'io.spring.convention.spring-sample-war'
dependencies { dependencies {
compile project(':spring-session') compile project(':spring-session-core')
compile "org.webjars:bootstrap" compile "org.webjars:bootstrap"
compile "org.webjars:webjars-taglib" compile "org.webjars:webjars-taglib"
compile "com.hazelcast:hazelcast-client" compile "com.hazelcast:hazelcast-client"

View File

@@ -3,7 +3,7 @@ apply plugin: 'io.spring.convention.spring-pom'
description = "Aggregator for Spring Session and Spring Data Redis" description = "Aggregator for Spring Session and Spring Data Redis"
dependencies { dependencies {
compile project(':spring-session') compile project(':spring-session-core')
compile ("org.springframework.data:spring-data-redis") { compile ("org.springframework.data:spring-data-redis") {
exclude group: "org.slf4j", module: 'slf4j-api' exclude group: "org.slf4j", module: 'slf4j-api'
exclude group: "org.slf4j", module: 'jcl-over-slf4j' exclude group: "org.slf4j", module: 'jcl-over-slf4j'

View File

@@ -1,6 +1,6 @@
apply plugin: 'io.spring.convention.spring-pom' apply plugin: 'io.spring.convention.spring-pom'
dependencies { dependencies {
compile project(':spring-session') compile project(':spring-session-core')
compile "com.hazelcast:hazelcast" compile "com.hazelcast:hazelcast"
} }

View File

@@ -3,6 +3,6 @@ apply plugin: 'io.spring.convention.spring-pom'
description = "Aggregator for Spring Session and Spring JDBC" description = "Aggregator for Spring Session and Spring JDBC"
dependencies { dependencies {
compile project(':spring-session') compile project(':spring-session-core')
compile "org.springframework:spring-jdbc" compile "org.springframework:spring-jdbc"
} }