Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit c53b927

Browse files
author
artembilan
committed
Upgrade dependencies; prepare for release
1 parent bc4a1c7 commit c53b927

File tree

6 files changed

+23
-19
lines changed

6 files changed

+23
-19
lines changed

build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ plugins {
55
id 'jacoco'
66
id 'org.sonarqube' version '2.8'
77
id 'checkstyle'
8-
id 'org.ajoberstar.grgit' version '4.0.0'
9-
id "io.spring.dependency-management" version '1.0.8.RELEASE'
10-
id 'com.jfrog.artifactory' version '4.11.0'
8+
id 'org.ajoberstar.grgit' version '4.0.2'
9+
id "io.spring.dependency-management" version '1.0.9.RELEASE'
10+
id 'com.jfrog.artifactory' version '4.15.2'
1111
}
1212

1313
description = 'Spring Integration AWS Support'
@@ -23,16 +23,16 @@ repositories {
2323
}
2424

2525
ext {
26-
assertjVersion = '3.14.0'
27-
awaitilityVersion = '4.0.1'
26+
assertjVersion = '3.16.1'
27+
awaitilityVersion = '4.0.3'
2828
dynamodbLockClientVersion = '1.1.0'
29-
jacksonVersion = '2.10.2'
29+
jacksonVersion = '2.10.4'
3030
junitVersion = '5.5.2'
3131
servletApiVersion = '4.0.1'
3232
localstackVersion = '0.1.22'
33-
log4jVersion = '2.13.0'
34-
springCloudAwsVersion = '2.2.1.RELEASE'
35-
springIntegrationVersion = '5.2.3.RELEASE'
33+
log4jVersion = '2.13.3'
34+
springCloudAwsVersion = '2.2.2.RELEASE'
35+
springIntegrationVersion = '5.2.6.RELEASE'
3636
kinesisClientVersion = '1.13.0'
3737
kinesisProducerVersion = '0.14.0'
3838

@@ -94,8 +94,8 @@ jacoco {
9494
}
9595

9696
checkstyle {
97-
configFile = file("${rootDir}/src/checkstyle/checkstyle.xml")
98-
toolVersion = '8.27'
97+
configDirectory.set(rootProject.file("src/checkstyle"))
98+
toolVersion = '8.32'
9999
}
100100

101101
dependencies {
@@ -144,11 +144,11 @@ javadoc {
144144
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
145145
options.author = true
146146
options.header = project.description
147-
options.overview = 'src/api/overview.html'
147+
options.overview = file('src/api/overview.html')
148148
options.stylesheetFile = file('src/api/stylesheet.css')
149149
options.splitIndex = true
150150
options.links(project.ext.javadocLinks)
151-
151+
options.addStringOption('Xdoclint:none', '-quiet')
152152
source = sourceSets.main.allJava
153153
classpath = project.sourceSets.main.compileClasspath
154154
destinationDir = file("$buildDir/api")

gradle/wrapper/gradle-wrapper.jar

208 Bytes
Binary file not shown.
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-6.0.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ esac
8282

8383
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
8484

85+
8586
# Determine the Java command to use to start the JVM.
8687
if [ -n "$JAVA_HOME" ] ; then
8788
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
@@ -129,6 +130,7 @@ fi
129130
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130131
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131132
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133+
132134
JAVACMD=`cygpath --unix "$JAVACMD"`
133135

134136
# We build the pattern for arguments to be converted via cygpath

gradlew.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=.
2929
set APP_BASE_NAME=%~n0
3030
set APP_HOME=%DIRNAME%
3131

32+
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
33+
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34+
3235
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
3336
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
3437

@@ -81,6 +84,7 @@ set CMD_LINE_ARGS=%*
8184

8285
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
8386

87+
8488
@rem Execute Gradle
8589
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
8690

src/checkstyle/checkstyle.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,15 @@
55
<module name="Checker">
66

77
<module name="SuppressionFilter">
8-
<property name="file" value="src/checkstyle/checkstyle-suppressions.xml"/>
8+
<property name="file" value="${config_loc}/checkstyle-suppressions.xml"/>
99
</module>
1010

1111
<!-- Root Checks -->
1212
<module name="RegexpHeader">
13-
<property name="headerFile" value="src/checkstyle/checkstyle-header.txt"/>
13+
<property name="headerFile" value="${config_loc}/checkstyle-header.txt"/>
1414
<property name="fileExtensions" value="java"/>
1515
</module>
16-
<module name="NewlineAtEndOfFile">
17-
<property name="lineSeparator" value="lf"/>
18-
</module>
16+
<module name="NewlineAtEndOfFile"/>
1917

2018
<!-- TreeWalker Checks -->
2119
<module name="TreeWalker">

0 commit comments

Comments
 (0)