Align versions in samples

This commit is contained in:
Janne Valkealahti
2015-09-08 15:26:31 +01:00
parent 2a617008c2
commit af6f11a1b6
3 changed files with 6 additions and 2 deletions

View File

@@ -183,6 +183,7 @@ configure(sampleProjects()) {
dependencies {
compile project(":spring-statemachine-samples-common")
compile project(":spring-statemachine-zookeeper")
compile "org.springframework:spring-context-support:$springVersion"
testCompile "org.springframework:spring-test:$springVersion"
testCompile "org.hamcrest:hamcrest-core:$hamcrestVersion"
testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion"
@@ -195,8 +196,8 @@ project('spring-statemachine-samples-common') {
tasks.findByPath("artifactoryPublish")?.enabled = false
dependencies {
compile project(":spring-statemachine-core")
compile "org.springframework.shell:spring-shell:1.1.0.RELEASE"
compile "org.springframework.boot:spring-boot-starter:1.2.1.RELEASE"
compile "org.springframework.shell:spring-shell:$springShellVersion"
compile "org.springframework.boot:spring-boot-starter:$springBootVersion"
}
}

View File

@@ -3,6 +3,7 @@ springVersion = 4.2.1.RELEASE
springSecurityVersion = 4.0.2.RELEASE
springBootVersion = 1.2.5.RELEASE
springSessionVersion = 1.0.2.RELEASE
springShellVersion = 1.1.0.RELEASE
curatorVersion = 2.8.0
kryoVersion = 2.24.0
hamcrestVersion = 1.3

View File

@@ -39,6 +39,8 @@ project('spring-statemachine-samples-web') {
compile("org.springframework.boot:spring-boot-starter-security:$springBootVersion")
compile("org.springframework.boot:spring-boot-starter-web:$springBootVersion")
compile("org.springframework.boot:spring-boot-starter-websocket:$springBootVersion")
compile("org.springframework:spring-webmvc:$springVersion")
compile("org.springframework:spring-websocket:$springVersion")
compile("org.springframework.security:spring-security-messaging:$springSecurityVersion")
compile("org.springframework.session:spring-session:$springSessionVersion")
}