Skip to content

Commit 8af80c9

Browse files
committed
Step#4: upgrade AWS SDK to latest
1 parent b003612 commit 8af80c9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
val vertxVersion = "4.2.4"
2-
val awsSdkVersion = "2.15.45"
2+
val awsSdkVersion = "2.17.129"
33
val junit5Version = "5.8.2"
44
val logbackVersion = "1.2.10"
55
val integrationOption = "tests.integration"
@@ -126,7 +126,11 @@ tasks {
126126
}
127127

128128
withType<Wrapper> {
129-
gradleVersion = "7.4"
129+
gradleVersion = "7.4"
130+
}
131+
132+
withType<JavaCompile> {
133+
options.compilerArgs.add("-Xlint:deprecation")
130134
}
131135
}
132136

src/test/java/io/reactiverse/awssdk/integration/firehose/VertxFirehoseClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static void createStream() throws Exception {
8888
CreateDeliveryStreamResponse resp = firehoseSync.createDeliveryStream(cs ->
8989
cs.deliveryStreamName(STREAM)
9090
.deliveryStreamType(STREAM_TYPE)
91-
.s3DestinationConfiguration(dest ->
91+
.extendedS3DestinationConfiguration(dest ->
9292
dest.bucketARN("arn:aws:s3:::" + BUCKET)
9393
)
9494
);

0 commit comments

Comments
 (0)