Skip to content

Commit d081f4d

Browse files
authored
Merge pull request #265 from aws/dongie/kinesis-launch
Dongie/kinesis launch
2 parents bbd407a + f2179b0 commit d081f4d

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
<suppress checks=".*"
2424
files=".*[\\/](test|it)[\\/]java[\\/].+\.java$"/>
2525

26+
<!-- TODO: Disable these suppressions. -->
27+
<suppress checks=".*"
28+
files=".(flow)[\\/].+\.java$"/>
29+
30+
31+
2632
<!-- ignore missing annotation checks under test/codegen directory -->
2733
<suppress checks="MissingSdkAnnotationCheck"
2834
files=".(codegen|test)[\\/].+\.java$"/>

flow/pom.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66

77
<groupId>software.amazon</groupId>
88
<artifactId>flow</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0</version>
10+
11+
<parent>
12+
<artifactId>aws-sdk-java-pom</artifactId>
13+
<groupId>software.amazon.awssdk</groupId>
14+
<version>2.0.0</version>
15+
</parent>
1016

1117
<properties>
1218
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -17,12 +23,12 @@
1723
<plugins>
1824
<plugin>
1925
<artifactId>maven-surefire-plugin</artifactId>
20-
<version>2.19.1</version>
26+
<version>${maven.surefire.version}</version>
2127
<dependencies>
2228
<dependency>
2329
<groupId>org.junit.platform</groupId>
2430
<artifactId>junit-platform-surefire-provider</artifactId>
25-
<version>1.0.1</version>
31+
<version>1.2.0</version>
2632
</dependency>
2733
</dependencies>
2834
</plugin>

0 commit comments

Comments
 (0)