Skip to content

Commit d8deb6b

Browse files
authored
Merge pull request #331 from andclt/events-v4-serialization-v2
Events v4 serialization v2
2 parents a9819fb + 51a0f6d commit d8deb6b

File tree

198 files changed

+5851
-16195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+5851
-16195
lines changed

aws-lambda-java-events/pom.xml

+14-20
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

66
<groupId>com.amazonaws</groupId>
77
<artifactId>aws-lambda-java-events</artifactId>
8-
<version>3.11.0</version>
8+
<version>4.0.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>AWS Lambda Java Events Library</name>
@@ -34,6 +34,7 @@
3434
<properties>
3535
<maven.compiler.source>1.8</maven.compiler.source>
3636
<maven.compiler.target>1.8</maven.compiler.target>
37+
<junit.version>5.8.2</junit.version>
3738
<lombok.version>1.18.22</lombok.version>
3839
</properties>
3940

@@ -46,30 +47,23 @@
4647

4748
<dependencies>
4849
<dependency>
49-
<groupId>joda-time</groupId>
50-
<artifactId>joda-time</artifactId>
51-
<version>2.6</version>
50+
<groupId>com.amazonaws</groupId>
51+
<artifactId>aws-lambda-java-serialization</artifactId>
52+
<version>2.0.0</version>
53+
<exclusions>
54+
<exclusion>
55+
<groupId>com.google.code.gson</groupId>
56+
<artifactId>gson</artifactId>
57+
</exclusion>
58+
</exclusions>
5259
</dependency>
5360

5461
<dependency>
5562
<groupId>org.junit.jupiter</groupId>
5663
<artifactId>junit-jupiter-engine</artifactId>
57-
<version>5.7.0</version>
64+
<version>${junit.version}</version>
5865
<scope>test</scope>
5966
</dependency>
60-
<dependency>
61-
<groupId>com.fasterxml.jackson.core</groupId>
62-
<artifactId>jackson-databind</artifactId>
63-
<version>2.10.5.1</version>
64-
<scope>test</scope>
65-
</dependency>
66-
<dependency>
67-
<groupId>net.javacrumbs.json-unit</groupId>
68-
<artifactId>json-unit-assertj</artifactId>
69-
<version>2.22.0</version>
70-
<scope>test</scope>
71-
</dependency>
72-
7367
<dependency>
7468
<groupId>org.projectlombok</groupId>
7569
<artifactId>lombok</artifactId>

0 commit comments

Comments
 (0)