Skip to content

Commit ff6d0b2

Browse files
committed
Preparing for 2.0.0
1 parent e542e26 commit ff6d0b2

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## DynamoDB Streams Kinesis Adapter for Java
2-
DynamoDB Streams Kinesis Adapter implements the Amazon Kinesis interface so that your application can use Amazon Kinesis Client Library \(KCL\) to consume and process data from a DynamoDB stream. You can get started in minutes using *Maven*_.
2+
DynamoDB Streams Kinesis Adapter implements the Amazon Kinesis interface so that your application can use Amazon Kinesis Client Library \(KCL\) to consume and process data from a DynamoDB stream. You can get started in minutes using *Maven*.
33

44
[DynamoDB Streams Developer Guide][1]
55

@@ -57,4 +57,4 @@ See [CHANGELOG.md](CHANGELOG.md)
5757
[6]: https://docs.aws.amazon.com/AWSSdkDocsJava/latest/DeveloperGuide/java-dg-setup.html
5858
[7]: https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/home.html
5959
[8]: http://mvnrepository.com/artifact/com.amazonaws/dynamodb-streams-kinesis-adapter
60-
[9]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.KCLAdapter.html
60+
[9]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.KCLAdapter.html

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>com.github.spotbugs</groupId>
123123
<artifactId>spotbugs-annotations</artifactId>
124-
<version>4.9.3</version>
124+
<version>4.8.4</version>
125125
</dependency>
126126
</dependencies>
127127

@@ -184,9 +184,9 @@
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-compiler-plugin</artifactId>
187+
<version>3.13.0</version>
187188
<configuration>
188-
<source>1.8</source>
189-
<target>1.8</target>
189+
<release>8</release>
190190
<encoding>UTF-8</encoding>
191191
</configuration>
192192
</plugin>
@@ -213,7 +213,7 @@
213213
<plugin>
214214
<groupId>org.apache.maven.plugins</groupId>
215215
<artifactId>maven-surefire-plugin</artifactId>
216-
<version>2.18.1</version>
216+
<version>3.2.5</version>
217217
<configuration>
218218
<includes>
219219
<include>**/*Test.java</include>

src/test/java/com/amazonaws/services/dynamodbv2/streamsadapter/serialization/RecordObjectMapperTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ public void testDDBRecordSerializationForComplexStructure() throws Exception {
9595

9696
// Read expected JSON from file
9797
String expectedJSON = new String(java.nio.file.Files.readAllBytes(
98-
java.nio.file.Paths.get("tst/resources/complex_structure_expected.json")));
98+
java.nio.file.Paths.get(
99+
"src/test/java/com/amazonaws/services/dynamodbv2/streamsadapter/serialization/complex_structure_expected.json")));
99100

100101
// Remove whitespace for comparison (since the file has formatting)
101102
ObjectMapper plainMapper = new ObjectMapper();

0 commit comments

Comments
 (0)