Skip to content

Commit a37e3be

Browse files
committed
Update for MQ 9.3.3 and latest Spring
1 parent cb42337 commit a37e3be

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
Newest updates are at the top of this file
33

4+
## 2.7.13 and 3.1.1 (2023-06-22)
5+
- Update Spring dependencies
6+
- Update to MQ 9.3.3.0
7+
48
## 2.7.12 and 3.1.0 (2023-05-24)
59
- Update Spring dependencies
610
- Update to MQ 9.3.2.1

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ subprojects {
3737
apply plugin: 'signing'
3838

3939
// This is the MQ client version
40-
ext.mqVersion = '9.3.2.1'
40+
ext.mqVersion = '9.3.3.0'
4141
ext.mqGroup = 'com.ibm.mq'
4242

4343
// The groupid for the compiled jars when uploaded

jms2.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// This file contains the versions of Spring etc to work with a javax.jms-based system
22
ext {
33
// Our shipped version - should usually match the Spring Boot Version
4-
mqStarterVersion = '2.7.12'
4+
mqStarterVersion = '2.7.13'
55

66
// Direct Dependencies - give versions here
7-
springVersion = '5.3.27'
8-
springBootVersion = '2.7.12'
7+
springVersion = '5.3.28'
8+
springBootVersion = '2.7.13'
99

1010
// The pooledJms v2.x level is built against Java 11 so we can't move there
1111
pooledJmsVersion = '1.2.4'

jms3.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
ext {
33
// Our shipped version - should usually match the Spring Boot Version but
44
// we keep it different during the pre-GA releases
5-
mqStarterVersion = '3.1.0'
5+
mqStarterVersion = '3.1.1'
66

77
// Direct Dependencies - give versions here
8-
springVersion = '6.0.9'
9-
springBootVersion = '3.1.0'
8+
springVersion = '6.0.10'
9+
springBootVersion = '3.1.1'
1010

1111
pooledJmsVersion = '3.1.0'
1212
jUnitVersion = '4.13.2'

samples/s1/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'java'
1313
apply plugin: 'org.springframework.boot'
1414

1515
// The designated version should match the current version in the root of the repo
16-
ext.starterVersion = '2.7.12'
16+
ext.starterVersion = '2.7.13'
1717

1818
// The local, flatDir configuration lets us use a modified version from
1919
// this repository without needing it released via maven

samples/s2.tls/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'java'
1313
apply plugin: 'org.springframework.boot'
1414

1515
// The designated version should match the current version in the root of the repo
16-
ext.starterVersion = '2.7.12'
16+
ext.starterVersion = '2.7.13'
1717

1818
// The local, flatDir configuration lets us use a modified version from
1919
// this repository without needing it released via maven

samples/s2/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'java'
1313
apply plugin: 'org.springframework.boot'
1414

1515
// The designated version should match the current version in the root of the repo
16-
ext.starterVersion = '2.7.12'
16+
ext.starterVersion = '2.7.13'
1717

1818
// The local, flatDir configuration lets us use a modified version from
1919
// this repository without needing it released via maven

samples/s3.jms3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'java'
1313
apply plugin: 'org.springframework.boot'
1414

1515
// The designated version should match the current version in the root of the repo
16-
ext.starterVersion = '3.1.0'
16+
ext.starterVersion = '3.1.1'
1717

1818

1919
// The local, flatDir configuration lets us use a modified version from

samples/s3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'java'
1313
apply plugin: 'org.springframework.boot'
1414

1515
// The designated version should match the current version in the root of the repo
16-
ext.starterVersion = '2.7.12'
16+
ext.starterVersion = '2.7.13'
1717

1818
// The local, flatDir configuration lets us use a modified version from
1919
// this repository without needing it released via maven

0 commit comments

Comments
 (0)