jnioche commented on code in PR #1939:
URL: https://github.com/apache/stormcrawler/pull/1939#discussion_r3407570672
##########
external/aws/pom.xml:
##########
@@ -37,20 +37,67 @@ under the License.
<description>AWS resources for StormCrawler</description>
<properties>
- <aws.version>1.12.797</aws.version>
+ <aws.version>2.46.7</aws.version>
</properties>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>software.amazon.awssdk</groupId>
+ <artifactId>bom</artifactId>
+ <version>${aws.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<dependencies>
<dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-cloudsearch</artifactId>
- <version>${aws.version}</version>
+ <groupId>software.amazon.awssdk</groupId>
+ <artifactId>cloudsearch</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>software.amazon.awssdk</groupId>
+ <artifactId>cloudsearchdomain</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>software.amazon.awssdk</groupId>
+ <artifactId>s3</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.testcontainers</groupId>
+ <artifactId>localstack</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.testcontainers</groupId>
+ <artifactId>junit-jupiter</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.awaitility</groupId>
Review Comment:
@rzo1 is awaitability used by the test you created?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]