File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22Newest 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11// This file contains the versions of Spring etc to work with a javax.jms-based system
22ext {
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'
Original file line number Diff line number Diff line change 22ext {
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'
You can’t perform that action at this time.
0 commit comments