File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
src/test/java/io/reactiverse/awssdk/integration/firehose Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
val vertxVersion = " 4.2.4"
2
- val awsSdkVersion = " 2.15.45 "
2
+ val awsSdkVersion = " 2.17.129 "
3
3
val junit5Version = " 5.8.2"
4
4
val logbackVersion = " 1.2.10"
5
5
val integrationOption = " tests.integration"
@@ -126,7 +126,11 @@ tasks {
126
126
}
127
127
128
128
withType<Wrapper > {
129
- gradleVersion = " 7.4"
129
+ gradleVersion = " 7.4"
130
+ }
131
+
132
+ withType<JavaCompile > {
133
+ options.compilerArgs.add(" -Xlint:deprecation" )
130
134
}
131
135
}
132
136
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ public static void createStream() throws Exception {
88
88
CreateDeliveryStreamResponse resp = firehoseSync .createDeliveryStream (cs ->
89
89
cs .deliveryStreamName (STREAM )
90
90
.deliveryStreamType (STREAM_TYPE )
91
- .s3DestinationConfiguration (dest ->
91
+ .extendedS3DestinationConfiguration (dest ->
92
92
dest .bucketARN ("arn:aws:s3:::" + BUCKET )
93
93
)
94
94
);
You can’t perform that action at this time.
0 commit comments