Skip to content

Commit

Permalink
Update to latest Spring dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmmqmet committed Sep 23, 2022
1 parent 0cba794 commit 92b1516
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
Newest updates are at the top of this file

## 2.7.4 and 0.3.0-M6 (2022-09-23)
- Update dependencies to Spring Boot 2.7.4/3.0.0-M5

## 2.7.2 and 0.3.0-M4 (2022-07-22)
- Update dependencies to Spring Boot 2.7.2/3.0.0-M4

Expand Down
22 changes: 22 additions & 0 deletions RUNME.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,30 @@ do
target=publishToMavenLocal
fi

if $gaRelease
then
# Use a private copy of the properties that has the real credentials
if [ -r $HOME/.gradle.properties ]
then
cp $HOME/.gradle.properties ./gradle.properties
fi

if [ ! -r gradle.properties ]
then
print "ERROR: Need to provide a gradle.properties file with credentials"
exit 1
fi
else
cp gradle.properties.template gradle.properties
fi

# Possible Targets are publishAllPublicationsToMavenRepository publishToMavenLocal
(./gradlew $args --warning-mode all clean jar $target 2>&1;echo $? > $rcFile) | tee -a $buildLog

# Always make sure we've got a dummy properties file - the values are not needed from here on
cp gradle.properties.template gradle.properties

# Now we can look for errors
rc=`cat $rcFile`
if [ $rc -ne "0" ]
then
Expand Down
6 changes: 3 additions & 3 deletions jms2.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// This file contains the versions of Spring etc to work with a javax.jms-based system
ext {
// Our shipped version - should usually match the Spring Boot Version
mqStarterVersion = '2.7.2'
mqStarterVersion = '2.7.4'

// Direct Dependencies - give versions here
springVersion = '5.3.22'
springBootVersion = '2.7.2'
springVersion = '5.3.23'
springBootVersion = '2.7.4'

// The pooledJms v2.x level is built against Java 11 so we can't move there
pooledJmsVersion = '1.2.4'
Expand Down
6 changes: 3 additions & 3 deletions jms3.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
ext {
// Our shipped version - should usually match the Spring Boot Version but
// we keep it different during the pre-GA releases
mqStarterVersion = '0.3.0-M4'
mqStarterVersion = '0.3.0-M5'

// Direct Dependencies - give versions here
springVersion = '6.0.0-M5'
springBootVersion = '3.0.0-M4'
springVersion = '6.0.0-M6'
springBootVersion = '3.0.0-M5'

pooledJmsVersion = '3.0.0'
jUnitVersion = '4.13.2'
Expand Down

0 comments on commit 92b1516

Please sign in to comment.