Skip to content

Commit 519b583

Browse files
committed
- Update dependencies to Spring Boot 2.7.11/3.0.6
- Over-enthusiastic conversion to Jakarta names (#91)
1 parent 19d76b5 commit 519b583

9 files changed

Lines changed: 27 additions & 15 deletions

File tree

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.11 and 3.0.6 (2023-04-21)
5+
- Update dependencies to Spring Boot 2.7.11/3.0.6
6+
- Over-enthusiastic conversion to Jakarta names (#91)
7+
48
## 2.7.10 and 3.0.5 (2023-03-24)
59
- Update dependencies to Spring Boot 2.7.10/3.0.5
610

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.10'
4+
mqStarterVersion = '2.7.11'
55

66
// Direct Dependencies - give versions here
7-
springVersion = '5.3.26'
8-
springBootVersion = '2.7.10'
7+
springVersion = '5.3.27'
8+
springBootVersion = '2.7.11'
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.0.5'
5+
mqStarterVersion = '3.0.6'
66

77
// Direct Dependencies - give versions here
8-
springVersion = '6.0.7'
9-
springBootVersion = '3.0.5'
8+
springVersion = '6.0.8'
9+
springBootVersion = '3.0.6'
1010

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

makeJms3.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ curdir=`pwd`
1212
in="$1"
1313
out="$2"
1414

15+
if [ -z "$in" -o -z "$out" ]
16+
then
17+
echo "Usage: makeJms3.sh inDir outDir"
18+
exit 1
19+
fi
20+
1521
if [ ! -d $in ]
1622
then
1723
echo "Cannot find input directory $in"
@@ -28,8 +34,10 @@ do
2834
# Change various package names, but the javax.naming seems to have to remain so we revert that
2935
# specific change in the final step of the filter.
3036
cat $f |\
31-
sed "s/com.ibm.mq.jms/com.ibm.mq.jakarta.jms/g" |\
32-
sed "s/com.ibm.msg.client/com.ibm.msg.client.jakarta/g" |\
33-
sed "s/javax/jakarta/g" |
34-
sed "s/jakarta.naming/javax.naming/g"> $out/$f
37+
sed "s/import com.ibm.mq.jms/import com.ibm.mq.jakarta.jms/g" |\
38+
sed "s/import com.ibm.msg.client/import com.ibm.msg.client.jakarta/g" |\
39+
sed "s/javax/jakarta/g" |\
40+
sed "s/com.ibm.mq.jakarta.jms.channel.sharing/com.ibm.mq.jms.channel.sharing/g" |\
41+
sed "s/jakarta.net.ssl/javax.net.ssl/g" |\
42+
sed "s/jakarta.naming/javax.naming/g" > $out/$f
3543
done

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.10'
16+
ext.starterVersion = '2.7.11'
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.10'
16+
ext.starterVersion = '2.7.11'
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.10'
16+
ext.starterVersion = '2.7.11'
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.0.5'
16+
ext.starterVersion = '3.0.6'
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.10'
16+
ext.starterVersion = '2.7.11'
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)