Skip to content

Commit fc2cea5

Browse files
winfriedgerlachMahmoud @ Broadcom
authored andcommitted
bump some libraries to newer minor releases
1 parent 3db4076 commit fc2cea5

11 files changed

+17
-17
lines changed

gradle.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
#Mon Jun 19 10:33:34 UTC 2023
22
version=4.0.1-SNAPSHOT
3-
springBootVersion=3.4.0-SNAPSHOT
3+
springBootVersion=3.4.2
44
jakartaPersistenceVersion=3.1.0
5-
kryoVersion=4.0.2
6-
springShellVersion=3.4.0-SNAPSHOT
7-
eclipseEmfXmiVersion=2.11.1-v20150805-0538
5+
kryoVersion=4.0.3
6+
springShellVersion=3.4.0
7+
eclipseEmfXmiVersion=2.11.1
88
eclipseUml2CommonVersion=2.0.0-v20140602-0749
9-
eclipseEmfCommonVersion=2.11.0-v20150805-0538
9+
eclipseEmfCommonVersion=2.11.0
1010
eclipseUml2TypesVersion=2.0.0-v20140602-0749
11-
eclipseEmfEcoreVersion=2.11.1-v20150805-0538
11+
eclipseEmfEcoreVersion=2.11.2
1212
eclipseUml2UmlVersion=5.0.0-v20140602-0749
1313
xcuratorVersion=2.11.1
1414
curatorVersion=5.5.0
1515
springAsciidoctorBackends=0.0.5
1616
awaitilityVersion=3.1.6
17-
reactorBlockHoundVersion=1.0.4.RELEASE
17+
reactorBlockHoundVersion=1.0.10.RELEASE
1818
findbugsVersion=3.0.2
1919
gradleEnterpriseVersion=3.16.2
2020
springGeConventionsVersion=0.0.15

spring-statemachine-platform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
api "log4j:log4j:$log4jVersion"
1313
api "jakarta.persistence:jakarta.persistence-api:$jakartaPersistenceVersion"
1414
api "com.esotericsoftware:kryo-shaded:$kryoVersion"
15-
api "org.springframework.shell:spring-shell:$springShellVersion"
15+
api "org.springframework.shell:spring-shell-core:$springShellVersion"
1616
api "org.eclipse.uml2:uml:$eclipseUml2UmlVersion"
1717
api "org.eclipse.uml2:types:$eclipseUml2TypesVersion"
1818
api "org.eclipse.uml2:common:$eclipseUml2CommonVersion"

spring-statemachine-platform/spring-statemachine-platform.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
constraints {
1414
api "com.google.code.findbugs:jsr305:$findbugsVersion"
1515
api "com.esotericsoftware:kryo-shaded:$kryoVersion"
16-
api "org.springframework.shell:spring-shell:$springShellVersion"
16+
api "org.springframework.shell:spring-shell-core:$springShellVersion"
1717
api "jakarta.persistence:jakarta.persistence-api:$jakartaPersistenceVersion"
1818
api "org.eclipse.uml2:uml:$eclipseUml2UmlVersion"
1919
api "org.eclipse.uml2:types:$eclipseUml2TypesVersion"

spring-statemachine-samples/cdplayer/spring-statemachine-samples-cdplayer.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
management platform(project(":spring-statemachine-platform"))
99
implementation project(':spring-statemachine-samples-common')
1010
implementation project(':spring-statemachine-core')
11-
implementation 'org.springframework.shell:spring-shell'
11+
implementation 'org.springframework.shell:spring-shell-core'
1212
testImplementation(testFixtures(project(':spring-statemachine-core')))
1313
testImplementation 'io.projectreactor:reactor-test'
1414
testImplementation 'org.assertj:assertj-core'

spring-statemachine-samples/persist/spring-statemachine-samples-persist.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
implementation project(':spring-statemachine-samples-common')
1010
implementation project(':spring-statemachine-recipes-common')
1111
implementation 'org.springframework.boot:spring-boot-starter'
12-
implementation 'org.springframework.shell:spring-shell'
12+
implementation 'org.springframework.shell:spring-shell-core'
1313
implementation ('org.hsqldb:hsqldb')
1414
implementation ('org.springframework:spring-jdbc')
1515
testImplementation(testFixtures(project(':spring-statemachine-core')))

spring-statemachine-samples/showcase/spring-statemachine-samples-showcase.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
management platform(project(":spring-statemachine-platform"))
99
implementation project(':spring-statemachine-samples-common')
1010
implementation project(':spring-statemachine-core')
11-
implementation 'org.springframework.shell:spring-shell'
11+
implementation 'org.springframework.shell:spring-shell-core'
1212
testImplementation(testFixtures(project(':spring-statemachine-core')))
1313
testImplementation (project(':spring-statemachine-test'))
1414
testImplementation 'org.hamcrest:hamcrest-core'

spring-statemachine-samples/spring-statemachine-samples.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ description = 'Spring State Machine Samples Common'
77
dependencies {
88
management platform(project(":spring-statemachine-platform"))
99
implementation project(':spring-statemachine-core')
10-
implementation 'org.springframework.shell:spring-shell'
10+
implementation 'org.springframework.shell:spring-shell-core'
1111
implementation 'org.springframework.boot:spring-boot-starter'
1212
}

spring-statemachine-samples/tasks/spring-statemachine-samples-tasks.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
management platform(project(":spring-statemachine-platform"))
99
implementation project(':spring-statemachine-samples-common')
1010
implementation project(':spring-statemachine-core')
11-
implementation 'org.springframework.shell:spring-shell'
11+
implementation 'org.springframework.shell:spring-shell-core'
1212
testImplementation(testFixtures(project(':spring-statemachine-core')))
1313
testImplementation (project(':spring-statemachine-test'))
1414
testImplementation 'org.hamcrest:hamcrest-core'

spring-statemachine-samples/turnstile/spring-statemachine-samples-turnstile.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
management platform(project(":spring-statemachine-platform"))
99
implementation project(':spring-statemachine-samples-common')
1010
implementation project(':spring-statemachine-core')
11-
implementation 'org.springframework.shell:spring-shell'
11+
implementation 'org.springframework.shell:spring-shell-core'
1212
testImplementation(testFixtures(project(':spring-statemachine-core')))
1313
testImplementation (project(':spring-statemachine-test'))
1414
testImplementation 'org.hamcrest:hamcrest-core'

spring-statemachine-samples/washer/spring-statemachine-samples-washer.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
management platform(project(":spring-statemachine-platform"))
99
implementation project(':spring-statemachine-samples-common')
1010
implementation project(':spring-statemachine-core')
11-
implementation 'org.springframework.shell:spring-shell'
11+
implementation 'org.springframework.shell:spring-shell-core'
1212
testImplementation(testFixtures(project(':spring-statemachine-core')))
1313
testImplementation (project(':spring-statemachine-test'))
1414
testImplementation 'org.hamcrest:hamcrest-core'

0 commit comments

Comments
 (0)