Skip to content

Commit 92b1516

Browse files
committed
Update to latest Spring dependencies
1 parent 0cba794 commit 92b1516

4 files changed

Lines changed: 31 additions & 6 deletions

File tree

CHANGES.md

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

4+
## 2.7.4 and 0.3.0-M6 (2022-09-23)
5+
- Update dependencies to Spring Boot 2.7.4/3.0.0-M5
6+
47
## 2.7.2 and 0.3.0-M4 (2022-07-22)
58
- Update dependencies to Spring Boot 2.7.2/3.0.0-M4
69

RUNME.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,30 @@ do
146146
target=publishToMavenLocal
147147
fi
148148

149+
if $gaRelease
150+
then
151+
# Use a private copy of the properties that has the real credentials
152+
if [ -r $HOME/.gradle.properties ]
153+
then
154+
cp $HOME/.gradle.properties ./gradle.properties
155+
fi
156+
157+
if [ ! -r gradle.properties ]
158+
then
159+
print "ERROR: Need to provide a gradle.properties file with credentials"
160+
exit 1
161+
fi
162+
else
163+
cp gradle.properties.template gradle.properties
164+
fi
165+
149166
# Possible Targets are publishAllPublicationsToMavenRepository publishToMavenLocal
150167
(./gradlew $args --warning-mode all clean jar $target 2>&1;echo $? > $rcFile) | tee -a $buildLog
168+
169+
# Always make sure we've got a dummy properties file - the values are not needed from here on
170+
cp gradle.properties.template gradle.properties
171+
172+
# Now we can look for errors
151173
rc=`cat $rcFile`
152174
if [ $rc -ne "0" ]
153175
then

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.2'
4+
mqStarterVersion = '2.7.4'
55

66
// Direct Dependencies - give versions here
7-
springVersion = '5.3.22'
8-
springBootVersion = '2.7.2'
7+
springVersion = '5.3.23'
8+
springBootVersion = '2.7.4'
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 = '0.3.0-M4'
5+
mqStarterVersion = '0.3.0-M5'
66

77
// Direct Dependencies - give versions here
8-
springVersion = '6.0.0-M5'
9-
springBootVersion = '3.0.0-M4'
8+
springVersion = '6.0.0-M6'
9+
springBootVersion = '3.0.0-M5'
1010

1111
pooledJmsVersion = '3.0.0'
1212
jUnitVersion = '4.13.2'

0 commit comments

Comments
 (0)