Upgrade to the latest dependencies
This commit is contained in:
10
build.gradle
10
build.gradle
@@ -13,7 +13,7 @@ plugins {
|
||||
id 'eclipse'
|
||||
id 'idea'
|
||||
id 'jacoco'
|
||||
id 'org.sonarqube' version '2.6.1'
|
||||
id 'org.sonarqube' version '2.6.2'
|
||||
id 'checkstyle'
|
||||
}
|
||||
description = 'Spring Integration AWS Support'
|
||||
@@ -31,13 +31,13 @@ repositories {
|
||||
}
|
||||
|
||||
ext {
|
||||
assertjVersion = '3.9.1'
|
||||
assertjVersion = '3.10.0'
|
||||
dynamodbLockClientVersion = '1.0.0'
|
||||
jacksonVersion = '2.9.5'
|
||||
jacksonVersion = '2.9.6'
|
||||
servletApiVersion = '3.1.0'
|
||||
log4jVersion = '2.11.0'
|
||||
springCloudAwsVersion = '2.0.0.RELEASE'
|
||||
springIntegrationVersion = '5.0.6.RELEASE'
|
||||
springIntegrationVersion = '5.0.7.RELEASE'
|
||||
|
||||
idPrefix = 'aws'
|
||||
|
||||
@@ -93,7 +93,7 @@ jacoco {
|
||||
|
||||
checkstyle {
|
||||
configFile = file("${rootDir}/src/checkstyle/checkstyle.xml")
|
||||
toolVersion = "8.8"
|
||||
toolVersion = "8.11"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
@@ -75,4 +75,9 @@ public class S3StreamingMessageSource extends AbstractRemoteFileStreamingMessage
|
||||
return file;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isDirectory(S3ObjectSummary file) {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user