Skip to content

Commit 0c29f7d

Browse files
committed
Upgrade dependencies, including Gradle
1 parent 57f7fd5 commit 0c29f7d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlinVersion = '1.3.40'
2+
ext.kotlinVersion = '1.3.50'
33
repositories {
44
maven { url 'https://repo.spring.io/plugins-release' }
55
}
@@ -37,7 +37,7 @@ ext {
3737
modifiedFiles =
3838
files(grgit.status().unstaged.modified).filter{ f -> f.name.endsWith('.java') || f.name.endsWith('.kt') }
3939

40-
assertjVersion = '3.12.2'
40+
assertjVersion = '3.13.2'
4141
assertkVersion = '0.19'
4242
commonsHttpClientVersion = '4.5.9'
4343
googleJsr305Version = '3.0.2'
@@ -47,14 +47,14 @@ ext {
4747
junit4Version = '4.12'
4848
junitJupiterVersion = '5.5.1'
4949
junitPlatformVersion = '1.5.1'
50-
log4jVersion = '2.12.0'
50+
log4jVersion = '2.12.1'
5151
logbackVersion = '1.2.3'
5252
mockitoVersion = '3.0.0'
5353
rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '5.7.3'
5454
rabbitmqHttpClientVersion = '3.2.0.RELEASE'
55-
reactorVersion = '3.3.0.BUILD-SNAPSHOT'
55+
reactorVersion = '3.3.0.RC1'
5656
springDataCommonsVersion = '2.2.0.BUILD-SNAPSHOT'
57-
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.2.0.BUILD-SNAPSHOT'
57+
springVersion = project.hasProperty('springVersion') ? project.springVersion : '5.2.0.RC2'
5858
springRetryVersion = '1.2.4.RELEASE'
5959
}
6060

@@ -249,7 +249,7 @@ subprojects { subproject ->
249249

250250
checkstyle {
251251
configFile = file("${rootDir}/src/checkstyle/checkstyle.xml")
252-
toolVersion = "8.21"
252+
toolVersion = "8.24"
253253
}
254254

255255
artifacts {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ if $darwin; then
125125
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126126
fi
127127

128-
# For Cygwin, switch paths to Windows format before running java
129-
if $cygwin ; then
128+
# For Cygwin or MSYS, switch paths to Windows format before running java
129+
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130130
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131131
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132132
JAVACMD=`cygpath --unix "$JAVACMD"`

0 commit comments

Comments
 (0)