Upgrade to the latest dependencies

This commit is contained in:
Artem Bilan
2018-07-27 17:00:16 -04:00
parent 1e1e1acc39
commit 19d11057c2
4 changed files with 11 additions and 6 deletions

View File

@@ -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 {

Binary file not shown.

View File

@@ -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

View File

@@ -75,4 +75,9 @@ public class S3StreamingMessageSource extends AbstractRemoteFileStreamingMessage
return file;
}
@Override
protected boolean isDirectory(S3ObjectSummary file) {
return false;
}
}