Skip to content

Commit cb375f4

Browse files
committed
Update pom version
1 parent 9881f8e commit cb375f4

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileSubscriberTckTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public FileSubscriberTckTest() {
4747
@Override
4848
public Subscriber<ByteBuffer> createSubscriber(WhiteboxSubscriberProbe<ByteBuffer> whiteboxSubscriberProbe) {
4949
Path tempFile = getNewTempFile();
50-
return new FileSubscriber(openChannel(tempFile), tempFile, new CompletableFuture<>(), (t) -> {}) {
50+
return new FileSubscriber(0, openChannel(tempFile), tempFile, new CompletableFuture<>(), (t) -> {}) {
5151
@Override
5252
public void onSubscribe(Subscription s) {
5353
super.onSubscribe(s);

services-custom/s3-transfermanager/pom.xml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.5.32-SNAPSHOT</version>
24+
<version>2.7.16-SNAPSHOT</version>
2525
<relativePath>../../pom.xml</relativePath>
2626
</parent>
2727
<artifactId>s3-transfermanager</artifactId>
@@ -35,14 +35,15 @@
3535

3636
<properties>
3737
<jre.version>1.8</jre.version>
38+
<java-sdk-v2.version>2.7.16-SNAPSHOT</java-sdk-v2.version>
3839
</properties>
3940

4041
<dependencyManagement>
4142
<dependencies>
4243
<dependency>
4344
<groupId>software.amazon.awssdk</groupId>
4445
<artifactId>bom-internal</artifactId>
45-
<version>2.5.32-SNAPSHOT</version>
46+
<version>${java-sdk-v2.version}</version>
4647
<type>pom</type>
4748
<scope>import</scope>
4849
</dependency>
@@ -53,44 +54,44 @@
5354
<dependency>
5455
<groupId>software.amazon.awssdk</groupId>
5556
<artifactId>s3</artifactId>
56-
<version>2.5.32-SNAPSHOT</version>
57+
<version>${java-sdk-v2.version}</version>
5758
</dependency>
5859
<dependency>
5960
<groupId>software.amazon.awssdk</groupId>
6061
<artifactId>sdk-core</artifactId>
61-
<version>2.5.32-SNAPSHOT</version>
62+
<version>${java-sdk-v2.version}</version>
6263
</dependency>
6364
<dependency>
6465
<groupId>software.amazon.awssdk</groupId>
6566
<artifactId>aws-core</artifactId>
66-
<version>2.5.32-SNAPSHOT</version>
67+
<version>${java-sdk-v2.version}</version>
6768
</dependency>
6869
<dependency>
6970
<groupId>software.amazon.awssdk</groupId>
7071
<artifactId>regions</artifactId>
71-
<version>2.5.32-SNAPSHOT</version>
72+
<version>${java-sdk-v2.version}</version>
7273
</dependency>
7374
<dependency>
7475
<groupId>software.amazon.awssdk</groupId>
7576
<artifactId>utils</artifactId>
76-
<version>2.5.32-SNAPSHOT</version>
77+
<version>${java-sdk-v2.version}</version>
7778
</dependency>
7879
<dependency>
7980
<groupId>software.amazon.awssdk</groupId>
8081
<artifactId>annotations</artifactId>
81-
<version>2.5.32-SNAPSHOT</version>
82+
<version>${java-sdk-v2.version}</version>
8283
</dependency>
8384

8485
<dependency>
8586
<groupId>software.amazon.awssdk</groupId>
8687
<artifactId>service-test-utils</artifactId>
87-
<version>2.5.32-SNAPSHOT</version>
88+
<version>${java-sdk-v2.version}</version>
8889
<scope>test</scope>
8990
</dependency>
9091
<dependency>
9192
<groupId>software.amazon.awssdk</groupId>
9293
<artifactId>test-utils</artifactId>
93-
<version>2.5.32-SNAPSHOT</version>
94+
<version>${java-sdk-v2.version}</version>
9495
<scope>test</scope>
9596
</dependency>
9697
<dependency>

0 commit comments

Comments
 (0)