Skip to content

Commit 66b1b56

Browse files
committed
Update for MQ 9.4.1
1 parent bd88a39 commit 66b1b56

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
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+
## 3.3.5 (2024-10-25)
5+
- Update Spring dependencies
6+
- Update to MQ 9.4.1.0
7+
48
## 3.3.3 (2024-08-23)
59
- Update Spring dependencies
610
- Add properties to control MQ JMS tracing

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.4.0.0'
40+
ext.mqVersion = '9.4.1.0'
4141
ext.mqGroup = 'com.ibm.mq'
4242

4343
// The groupid for the compiled jars when uploaded

jms3.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
ext {
33
// Our shipped version - should usually match the Spring Boot Version but
44
// there may be reasons to make it different
5-
mqStarterVersion = '3.3.3'
5+
mqStarterVersion = '3.3.5'
66

77
// Direct Dependencies - give versions here
8-
springVersion = '6.1.12'
9-
springBootVersion = '3.3.3'
8+
springVersion = '6.1.14'
9+
springBootVersion = '3.3.5'
1010

11-
pooledJmsVersion = '3.1.6'
11+
pooledJmsVersion = '3.1.7'
1212
jUnitVersion = '4.13.2'
1313

1414
// MQ client has a 'jakarta' name

samples/s2.tls.jms3/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
88
}
99
}
1010

1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313

1414
// The designated version should match the current version in the root of the repo
15-
ext.starterVersion = '3.3.3'
15+
ext.starterVersion = '3.3.5'
1616
// The local, flatDir configuration lets us use a modified version from
1717
// this repository without needing it released via maven
1818
repositories {

samples/s2.tls.jms3/key.jks

0 Bytes
Binary file not shown.

samples/s3.jms3/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
88
}
99
}
1010

@@ -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.3.3'
16+
ext.starterVersion = '3.3.5'
1717

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

samples/s4.jms3/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
88
}
99
}
1010

1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313

1414
// The designated version should match the current version in the root of the repo
15-
ext.starterVersion = '3.3.3'
15+
ext.starterVersion = '3.3.5'
1616
// The local, flatDir configuration lets us use a modified version from
1717
// this repository without needing it released via maven
1818
repositories {

samples/s4a.jms3/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
7+
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
88
}
99
}
1010

1111
apply plugin: 'java'
1212
apply plugin: 'org.springframework.boot'
1313

1414
// The designated version should match the current version in the root of the repo
15-
ext.starterVersion = '3.3.3'
15+
ext.starterVersion = '3.3.5'
1616
// The local, flatDir configuration lets us use a modified version from
1717
// this repository without needing it released via maven
1818
repositories {

0 commit comments

Comments
 (0)