Start version 1.1.0

* Upgrade to SI-4.3.1
* Upgrade to SC-AWS-1.1.1
* Fix compatibility
This commit is contained in:
Artem Bilan
2016-08-31 09:38:36 -04:00
parent 8b9922d16c
commit a9a7b26dbf
3 changed files with 11 additions and 9 deletions

View File

@@ -55,8 +55,8 @@ ext {
assertjVersion = '3.4.1'
servletApiVersion = '3.1.0'
slf4jVersion = '1.7.21'
springCloudAwsVersion = '1.1.0.RELEASE'
springIntegrationVersion = '4.2.9.RELEASE'
springCloudAwsVersion = '1.1.1.RELEASE'
springIntegrationVersion = '4.3.1.RELEASE'
idPrefix = 'aws'

View File

@@ -1,2 +1,2 @@
version=1.0.1.BUILD-SNAPSHOT
version=1.1.0.BUILD-SNAPSHOT
org.gradle.daemon=true

View File

@@ -21,6 +21,8 @@ import org.springframework.integration.aws.inbound.S3InboundFileSynchronizingMes
import org.springframework.integration.aws.support.filters.S3RegexPatternFileListFilter;
import org.springframework.integration.aws.support.filters.S3SimplePatternFileListFilter;
import org.springframework.integration.file.config.AbstractRemoteFileInboundChannelAdapterParser;
import org.springframework.integration.file.filters.FileListFilter;
import org.springframework.integration.file.remote.synchronizer.InboundFileSynchronizer;
/**
* Parser for the AWS 's3-inbound-channel-adapter' element.
@@ -35,18 +37,18 @@ public class S3InboundChannelAdapterParser extends AbstractRemoteFileInboundChan
}
@Override
protected String getInboundFileSynchronizerClassname() {
return S3InboundFileSynchronizer.class.getName();
protected Class<? extends FileListFilter<?>> getSimplePatternFileListFilterClass() {
return S3SimplePatternFileListFilter.class;
}
@Override
protected String getSimplePatternFileListFilterClassname() {
return S3SimplePatternFileListFilter.class.getName();
protected Class<? extends FileListFilter<?>> getRegexPatternFileListFilterClass() {
return S3RegexPatternFileListFilter.class;
}
@Override
protected String getRegexPatternFileListFilterClassname() {
return S3RegexPatternFileListFilter.class.getName();
protected Class<? extends InboundFileSynchronizer> getInboundFileSynchronizerClass() {
return S3InboundFileSynchronizer.class;
}
}