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

Commit 57ccd1f

Browse files
committed
Start version 2.5
* Upgrade some dependencies; fix compatibilities
1 parent 3a7222f commit 57ccd1f

File tree

4 files changed

+25
-12
lines changed

4 files changed

+25
-12
lines changed

build.gradle

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id 'checkstyle'
88
id 'org.ajoberstar.grgit' version '4.1.0'
99
id "io.spring.dependency-management" version '1.0.11.RELEASE'
10-
id 'com.jfrog.artifactory' version '4.19.0'
10+
id 'com.jfrog.artifactory' version '4.21.0'
1111
}
1212

1313
description = 'Spring Integration AWS Support'
@@ -16,24 +16,26 @@ group = 'org.springframework.integration'
1616

1717
repositories {
1818
mavenCentral()
19-
// maven { url 'https://repo.spring.io/libs-staging-local' }
20-
if (version.endsWith('BUILD-SNAPSHOT')) {
21-
maven { url 'https://repo.spring.io/libs-snapshot' }
19+
maven { url 'https://repo.spring.io/milestone' }
20+
maven { url 'https://repo.spring.io/release' }
21+
if (version.endsWith('SNAPSHOT')) {
22+
maven { url 'https://repo.spring.io/snapshot' }
2223
}
23-
maven { url 'https://repo.spring.io/libs-milestone' }
24+
25+
// maven { url 'https://repo.spring.io/libs-staging-local' }
2426
}
2527

2628
ext {
27-
assertjVersion = '3.18.1'
29+
assertjVersion = '3.19.0'
2830
awaitilityVersion = '4.0.3'
2931
dynamodbLockClientVersion = '1.1.0'
30-
jacksonVersion = '2.12.1'
32+
jacksonVersion = '2.12.2'
3133
junitVersion = '5.7.0'
3234
servletApiVersion = '4.0.1'
3335
localstackVersion = '0.2.6'
34-
log4jVersion = '2.14.0'
36+
log4jVersion = '2.14.1'
3537
springCloudAwsVersion = '2.2.5.RELEASE'
36-
springIntegrationVersion = '5.4.3'
38+
springIntegrationVersion = '5.5.0-SNAPSHOT'
3739
kinesisClientVersion = '1.14.0'
3840
kinesisProducerVersion = '0.14.3'
3941

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.4.1-SNAPSHOT
1+
version=2.5.0-SNAPSHOT
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.8.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/org/springframework/integration/aws/support/filters/S3PersistentAcceptOnceFileListFilter.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2019 the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -43,4 +43,15 @@ protected String fileName(S3ObjectSummary file) {
4343
return (file != null) ? file.getKey() : null;
4444
}
4545

46+
/**
47+
* Always return false since no directory notion in S3.
48+
* @param file the {@link S3ObjectSummary}
49+
* @return always false: S3 does not have a notion of directory
50+
* @since 2.5
51+
*/
52+
@Override
53+
protected boolean isDirectory(S3ObjectSummary file) {
54+
return false;
55+
}
56+
4657
}

0 commit comments

Comments
 (0)