Skip to content

Commit

Permalink
Update for MQ 9.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmmqmet committed Oct 25, 2024
1 parent bd88a39 commit 66b1b56
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
Newest updates are at the top of this file

## 3.3.5 (2024-10-25)
- Update Spring dependencies
- Update to MQ 9.4.1.0

## 3.3.3 (2024-08-23)
- Update Spring dependencies
- Add properties to control MQ JMS tracing
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ subprojects {
apply plugin: 'signing'

// This is the MQ client version
ext.mqVersion = '9.4.0.0'
ext.mqVersion = '9.4.1.0'
ext.mqGroup = 'com.ibm.mq'

// The groupid for the compiled jars when uploaded
Expand Down
8 changes: 4 additions & 4 deletions jms3.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
ext {
// Our shipped version - should usually match the Spring Boot Version but
// there may be reasons to make it different
mqStarterVersion = '3.3.3'
mqStarterVersion = '3.3.5'

// Direct Dependencies - give versions here
springVersion = '6.1.12'
springBootVersion = '3.3.3'
springVersion = '6.1.14'
springBootVersion = '3.3.5'

pooledJmsVersion = '3.1.6'
pooledJmsVersion = '3.1.7'
jUnitVersion = '4.13.2'

// MQ client has a 'jakarta' name
Expand Down
4 changes: 2 additions & 2 deletions samples/s2.tls.jms3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
}
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'

// The designated version should match the current version in the root of the repo
ext.starterVersion = '3.3.3'
ext.starterVersion = '3.3.5'
// The local, flatDir configuration lets us use a modified version from
// this repository without needing it released via maven
repositories {
Expand Down
Binary file modified samples/s2.tls.jms3/key.jks
Binary file not shown.
4 changes: 2 additions & 2 deletions samples/s3.jms3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
}
}

Expand All @@ -13,7 +13,7 @@ apply plugin: 'java'
apply plugin: 'org.springframework.boot'

// The designated version should match the current version in the root of the repo
ext.starterVersion = '3.3.3'
ext.starterVersion = '3.3.5'

// The local, flatDir configuration lets us use a modified version from
// this repository without needing it released via maven
Expand Down
4 changes: 2 additions & 2 deletions samples/s4.jms3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
}
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'

// The designated version should match the current version in the root of the repo
ext.starterVersion = '3.3.3'
ext.starterVersion = '3.3.5'
// The local, flatDir configuration lets us use a modified version from
// this repository without needing it released via maven
repositories {
Expand Down
4 changes: 2 additions & 2 deletions samples/s4a.jms3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.5")
}
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'

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

0 comments on commit 66b1b56

Please sign in to comment.