Skip to content

Commit fac6a57

Browse files
authored
1.1.2 aws-lambda-java-serialization release (#410)
1 parent 6ad3f70 commit fac6a57

37 files changed

+311
-1152
lines changed

.github/workflows/aws-lambda-java-serialization.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
# Install base module
3030
- name: Install events with Maven
3131
run: mvn -B install --file aws-lambda-java-events/pom.xml
32-
# Package target module
32+
33+
# Package and install target module
3334
- name: Package serialization with Maven
34-
run: mvn -B package --file aws-lambda-java-serialization/pom.xml
35+
run: mvn -B package install --file aws-lambda-java-serialization/pom.xml
36+
37+
# Run tests
38+
- name: Run tests from aws-lambda-java-tests
39+
run: mvn test --file aws-lambda-java-tests/pom.xml

aws-lambda-java-events/pom.xml

+180-180
Original file line numberDiff line numberDiff line change
@@ -1,190 +1,190 @@
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">
4-
<modelVersion>4.0.0</modelVersion>
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">
4+
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>com.amazonaws</groupId>
7-
<artifactId>aws-lambda-java-events</artifactId>
8-
<version>3.11.0</version>
9-
<packaging>jar</packaging>
6+
<groupId>com.amazonaws</groupId>
7+
<artifactId>aws-lambda-java-events</artifactId>
8+
<version>3.11.0</version>
9+
<packaging>jar</packaging>
1010

11-
<name>AWS Lambda Java Events Library</name>
12-
<description>
13-
Event interface definitions AWS services supported by AWS Lambda.
14-
</description>
15-
<url>https://aws.amazon.com/lambda/</url>
16-
<licenses>
17-
<license>
18-
<name>Apache License, Version 2.0</name>
19-
<url>https://aws.amazon.com/apache2.0</url>
20-
<distribution>repo</distribution>
21-
</license>
22-
</licenses>
23-
<scm>
24-
<url>https://github.com/aws/aws-lambda-java-libs.git</url>
25-
</scm>
26-
<developers>
27-
<developer>
28-
<name>AWS Lambda team</name>
29-
<organization>Amazon Web Services</organization>
30-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
31-
</developer>
32-
</developers>
11+
<name>AWS Lambda Java Events Library</name>
12+
<description>
13+
Event interface definitions AWS services supported by AWS Lambda.
14+
</description>
15+
<url>https://aws.amazon.com/lambda/</url>
16+
<licenses>
17+
<license>
18+
<name>Apache License, Version 2.0</name>
19+
<url>https://aws.amazon.com/apache2.0</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
23+
<scm>
24+
<url>https://github.com/aws/aws-lambda-java-libs.git</url>
25+
</scm>
26+
<developers>
27+
<developer>
28+
<name>AWS Lambda team</name>
29+
<organization>Amazon Web Services</organization>
30+
<organizationUrl>https://aws.amazon.com/</organizationUrl>
31+
</developer>
32+
</developers>
3333

34-
<properties>
35-
<maven.compiler.source>1.8</maven.compiler.source>
36-
<maven.compiler.target>1.8</maven.compiler.target>
37-
<lombok.version>1.18.22</lombok.version>
38-
</properties>
34+
<properties>
35+
<maven.compiler.source>1.8</maven.compiler.source>
36+
<maven.compiler.target>1.8</maven.compiler.target>
37+
<lombok.version>1.18.22</lombok.version>
38+
</properties>
3939

40-
<distributionManagement>
41-
<repository>
42-
<id>sonatype-nexus-staging</id>
43-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
44-
</repository>
45-
</distributionManagement>
40+
<distributionManagement>
41+
<repository>
42+
<id>sonatype-nexus-staging</id>
43+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
44+
</repository>
45+
</distributionManagement>
4646

47-
<dependencies>
48-
<dependency>
49-
<groupId>joda-time</groupId>
50-
<artifactId>joda-time</artifactId>
51-
<version>2.6</version>
52-
</dependency>
47+
<dependencies>
48+
<dependency>
49+
<groupId>joda-time</groupId>
50+
<artifactId>joda-time</artifactId>
51+
<version>2.10.8</version>
52+
</dependency>
5353

54-
<dependency>
55-
<groupId>org.junit.jupiter</groupId>
56-
<artifactId>junit-jupiter-engine</artifactId>
57-
<version>5.7.0</version>
58-
<scope>test</scope>
59-
</dependency>
60-
<dependency>
61-
<groupId>com.fasterxml.jackson.core</groupId>
62-
<artifactId>jackson-databind</artifactId>
63-
<version>2.13.4.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>
54+
<dependency>
55+
<groupId>org.junit.jupiter</groupId>
56+
<artifactId>junit-jupiter-engine</artifactId>
57+
<version>5.9.2</version>
58+
<scope>test</scope>
59+
</dependency>
60+
<dependency>
61+
<groupId>com.fasterxml.jackson.core</groupId>
62+
<artifactId>jackson-databind</artifactId>
63+
<version>2.14.2</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.36.1</version>
70+
<scope>test</scope>
71+
</dependency>
7272

73-
<dependency>
74-
<groupId>org.projectlombok</groupId>
75-
<artifactId>lombok</artifactId>
76-
<version>${lombok.version}</version>
77-
<scope>provided</scope>
78-
</dependency>
79-
</dependencies>
73+
<dependency>
74+
<groupId>org.projectlombok</groupId>
75+
<artifactId>lombok</artifactId>
76+
<version>${lombok.version}</version>
77+
<scope>provided</scope>
78+
</dependency>
79+
</dependencies>
8080

81-
<profiles>
82-
<profile>
83-
<id>dev</id>
84-
<build>
85-
<plugins>
86-
<plugin>
87-
<groupId>org.apache.maven.plugins</groupId>
88-
<artifactId>maven-javadoc-plugin</artifactId>
89-
<version>2.9.1</version>
90-
<configuration>
91-
<additionalparam>-Xdoclint:none</additionalparam>
92-
</configuration>
93-
<executions>
94-
<execution>
95-
<id>attach-javadocs</id>
96-
<goals>
97-
<goal>jar</goal>
98-
</goals>
99-
</execution>
100-
</executions>
101-
</plugin>
102-
</plugins>
103-
</build>
104-
</profile>
105-
<profile>
106-
<id>release</id>
107-
<build>
108-
<plugins>
109-
<plugin>
110-
<groupId>org.apache.maven.plugins</groupId>
111-
<artifactId>maven-source-plugin</artifactId>
112-
<version>3.2.1</version>
113-
<executions>
114-
<execution>
115-
<id>attach-sources</id>
116-
<goals>
117-
<goal>jar-no-fork</goal>
118-
</goals>
119-
</execution>
120-
</executions>
121-
</plugin>
122-
<plugin>
123-
<groupId>org.apache.maven.plugins</groupId>
124-
<artifactId>maven-javadoc-plugin</artifactId>
125-
<version>2.9.1</version>
126-
<configuration>
127-
<additionalparam>-Xdoclint:none</additionalparam>
128-
</configuration>
129-
<executions>
130-
<execution>
131-
<id>attach-javadocs</id>
132-
<goals>
133-
<goal>jar</goal>
134-
</goals>
135-
</execution>
136-
</executions>
137-
</plugin>
138-
<plugin>
139-
<groupId>org.apache.maven.plugins</groupId>
140-
<artifactId>maven-gpg-plugin</artifactId>
141-
<version>1.5</version>
142-
<executions>
143-
<execution>
144-
<id>sign-artifacts</id>
145-
<phase>verify</phase>
146-
<goals>
147-
<goal>sign</goal>
148-
</goals>
149-
</execution>
150-
</executions>
151-
</plugin>
152-
<plugin>
153-
<groupId>org.sonatype.plugins</groupId>
154-
<artifactId>nexus-staging-maven-plugin</artifactId>
155-
<version>1.6.3</version>
156-
<extensions>true</extensions>
157-
<configuration>
158-
<serverId>sonatype-nexus-staging</serverId>
159-
<nexusUrl>https://aws.oss.sonatype.org/</nexusUrl>
160-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
161-
</configuration>
162-
</plugin>
163-
<plugin>
164-
<groupId>org.apache.maven.plugins</groupId>
165-
<artifactId>maven-resources-plugin</artifactId>
166-
<version>3.2.0</version>
167-
<configuration>
168-
<encoding>UTF-8</encoding>
169-
</configuration>
170-
</plugin>
171-
<plugin>
172-
<groupId>org.apache.maven.plugins</groupId>
173-
<artifactId>maven-compiler-plugin</artifactId>
174-
<version>3.8.1</version>
175-
<configuration>
176-
<annotationProcessorPaths>
177-
<path>
178-
<groupId>org.projectlombok</groupId>
179-
<artifactId>lombok</artifactId>
180-
<version>${lombok.version}</version>
181-
</path>
182-
</annotationProcessorPaths>
183-
<encoding>UTF-8</encoding>
184-
</configuration>
185-
</plugin>
186-
</plugins>
187-
</build>
188-
</profile>
189-
</profiles>
81+
<profiles>
82+
<profile>
83+
<id>dev</id>
84+
<build>
85+
<plugins>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-javadoc-plugin</artifactId>
89+
<version>2.9.1</version>
90+
<configuration>
91+
<additionalparam>-Xdoclint:none</additionalparam>
92+
</configuration>
93+
<executions>
94+
<execution>
95+
<id>attach-javadocs</id>
96+
<goals>
97+
<goal>jar</goal>
98+
</goals>
99+
</execution>
100+
</executions>
101+
</plugin>
102+
</plugins>
103+
</build>
104+
</profile>
105+
<profile>
106+
<id>release</id>
107+
<build>
108+
<plugins>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-source-plugin</artifactId>
112+
<version>3.2.1</version>
113+
<executions>
114+
<execution>
115+
<id>attach-sources</id>
116+
<goals>
117+
<goal>jar-no-fork</goal>
118+
</goals>
119+
</execution>
120+
</executions>
121+
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-javadoc-plugin</artifactId>
125+
<version>2.9.1</version>
126+
<configuration>
127+
<additionalparam>-Xdoclint:none</additionalparam>
128+
</configuration>
129+
<executions>
130+
<execution>
131+
<id>attach-javadocs</id>
132+
<goals>
133+
<goal>jar</goal>
134+
</goals>
135+
</execution>
136+
</executions>
137+
</plugin>
138+
<plugin>
139+
<groupId>org.apache.maven.plugins</groupId>
140+
<artifactId>maven-gpg-plugin</artifactId>
141+
<version>1.5</version>
142+
<executions>
143+
<execution>
144+
<id>sign-artifacts</id>
145+
<phase>verify</phase>
146+
<goals>
147+
<goal>sign</goal>
148+
</goals>
149+
</execution>
150+
</executions>
151+
</plugin>
152+
<plugin>
153+
<groupId>org.sonatype.plugins</groupId>
154+
<artifactId>nexus-staging-maven-plugin</artifactId>
155+
<version>1.6.3</version>
156+
<extensions>true</extensions>
157+
<configuration>
158+
<serverId>sonatype-nexus-staging</serverId>
159+
<nexusUrl>https://aws.oss.sonatype.org/</nexusUrl>
160+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
161+
</configuration>
162+
</plugin>
163+
<plugin>
164+
<groupId>org.apache.maven.plugins</groupId>
165+
<artifactId>maven-resources-plugin</artifactId>
166+
<version>3.2.0</version>
167+
<configuration>
168+
<encoding>UTF-8</encoding>
169+
</configuration>
170+
</plugin>
171+
<plugin>
172+
<groupId>org.apache.maven.plugins</groupId>
173+
<artifactId>maven-compiler-plugin</artifactId>
174+
<version>3.8.1</version>
175+
<configuration>
176+
<annotationProcessorPaths>
177+
<path>
178+
<groupId>org.projectlombok</groupId>
179+
<artifactId>lombok</artifactId>
180+
<version>${lombok.version}</version>
181+
</path>
182+
</annotationProcessorPaths>
183+
<encoding>UTF-8</encoding>
184+
</configuration>
185+
</plugin>
186+
</plugins>
187+
</build>
188+
</profile>
189+
</profiles>
190190
</project>

aws-lambda-java-runtime-interface-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>com.amazonaws</groupId>
5858
<artifactId>aws-lambda-java-serialization</artifactId>
59-
<version>1.0.0</version>
59+
<version>1.1.0</version>
6060
</dependency>
6161

6262
<dependency>

0 commit comments

Comments
 (0)