Skip to content

Commit ae51a9c

Browse files
committed
Upgrade dependencies, including Gradle
1 parent f359c6b commit ae51a9c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

build.gradle

Lines changed: 8 additions & 8 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,23 +37,23 @@ 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
googleJsr305Version = '3.0.2'
4242
hamcrestVersion = '1.3'
43-
hibernateValidationVersion = '6.0.16.Final'
43+
hibernateValidationVersion = '6.0.17.Final'
4444
jacksonVersion = '2.9.9.20190807'
4545
jaywayJsonPathVersion = '2.4.0'
4646
junit4Version = '4.12'
4747
junitJupiterVersion = '5.5.1'
4848
junitPlatformVersion = '1.5.1'
4949
kafkaVersion = '2.3.0'
50-
log4jVersion = '2.12.0'
50+
log4jVersion = '2.12.1'
5151
mockitoVersion = '3.0.0'
52-
reactorVersion = '3.3.0.BUILD-SNAPSHOT'
52+
reactorVersion = '3.3.0.RC1'
5353
reactorKafkaVersion = '1.1.1.RELEASE'
5454
scalaVersion = '2.12'
5555
springRetryVersion = '1.2.4.RELEASE'
56-
springVersion = '5.2.0.BUILD-SNAPSHOT'
56+
springVersion = '5.2.0.RC2'
5757
springDataCommonsVersion = '2.2.0.BUILD-SNAPSHOT'
5858

5959
idPrefix = 'kafka'
@@ -113,7 +113,7 @@ subprojects { subproject ->
113113
eclipse.project.natures += 'org.springframework.ide.eclipse.core.springnature'
114114

115115
jacoco {
116-
toolVersion = '0.8.3'
116+
toolVersion = '0.8.4'
117117
}
118118

119119
// dependencies that are common across all java projects
@@ -148,7 +148,7 @@ subprojects { subproject ->
148148

149149
checkstyle {
150150
configFile = file("${rootDir}/src/checkstyle/checkstyle.xml")
151-
toolVersion = "8.21"
151+
toolVersion = "8.24"
152152
}
153153

154154
jacocoTestReport {
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.1-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)