Skip to content

Commit f0114f6

Browse files
committed
java events 2.0.2 - Added missing fields to APIGatewayProxyRequest
1 parent f951911 commit f0114f6

File tree

2 files changed

+250
-150
lines changed

2 files changed

+250
-150
lines changed

aws-lambda-java-events/pom.xml

+147-147
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,151 @@
11
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<groupId>com.amazonaws</groupId>
5+
<artifactId>aws-lambda-java-events</artifactId>
6+
<version>2.0.2</version>
7+
<packaging>jar</packaging>
38

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

9-
<name>AWS Lambda Java Events Library</name>
10-
<description>
11-
Event interface definitions AWS services supported by AWS Lambda.
12-
</description>
13-
<url>https://aws.amazon.com/lambda/</url>
14-
<licenses>
15-
<license>
16-
<name>Apache License, Version 2.0</name>
17-
<url>https://aws.amazon.com/apache2.0</url>
18-
<distribution>repo</distribution>
19-
</license>
20-
</licenses>
21-
<scm>
22-
<url>https://github.com/aws/aws-lambda-java-libs.git</url>
23-
</scm>
24-
<developers>
25-
<developer>
26-
<name>AWS Lambda team</name>
27-
<organization>Amazon Web Services</organization>
28-
<organizationUrl>https://aws.amazon.com/</organizationUrl>
29-
</developer>
30-
</developers>
32+
<distributionManagement>
33+
<repository>
34+
<id>sonatype-nexus-staging</id>
35+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
36+
</repository>
37+
</distributionManagement>
3138

32-
<distributionManagement>
33-
<repository>
34-
<id>sonatype-nexus-staging</id>
35-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
36-
</repository>
37-
</distributionManagement>
38-
39-
<dependencies>
40-
<dependency>
41-
<groupId>joda-time</groupId>
42-
<artifactId>joda-time</artifactId>
43-
<version>2.6</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>com.amazonaws</groupId>
47-
<artifactId>aws-java-sdk-s3</artifactId>
48-
<version>1.11.163</version>
49-
<scope>provided</scope><!--USER PROVIDED! SEE https://github.com/aws/aws-lambda-java-libs/tree/master/aws-lambda-java-events/README.md-->
50-
</dependency>
51-
<dependency>
52-
<groupId>com.amazonaws</groupId>
53-
<artifactId>aws-java-sdk-kinesis</artifactId>
54-
<version>1.11.163</version>
55-
<scope>provided</scope><!--USER PROVIDED! SEE https://github.com/aws/aws-lambda-java-libs/tree/master/aws-lambda-java-events/README.md-->
56-
</dependency>
57-
<dependency>
58-
<groupId>com.amazonaws</groupId>
59-
<artifactId>aws-java-sdk-dynamodb</artifactId>
60-
<version>1.11.163</version>
61-
<scope>provided</scope><!--USER PROVIDED! SEE https://github.com/aws/aws-lambda-java-libs/tree/master/aws-lambda-java-events/README.md-->
62-
</dependency>
63-
</dependencies>
64-
65-
<profiles>
66-
<profile>
67-
<id>dev</id>
68-
<build>
69-
<plugins>
70-
<plugin>
71-
<groupId>org.apache.maven.plugins</groupId>
72-
<artifactId>maven-javadoc-plugin</artifactId>
73-
<version>2.9.1</version>
74-
<configuration>
75-
<additionalparam>-Xdoclint:none</additionalparam>
76-
</configuration>
77-
<executions>
78-
<execution>
79-
<id>attach-javadocs</id>
80-
<goals>
81-
<goal>jar</goal>
82-
</goals>
83-
</execution>
84-
</executions>
85-
</plugin>
86-
</plugins>
87-
</build>
88-
</profile>
89-
<profile>
90-
<id>release</id>
91-
<build>
92-
<plugins>
93-
<plugin>
94-
<groupId>org.apache.maven.plugins</groupId>
95-
<artifactId>maven-source-plugin</artifactId>
96-
<version>2.2.1</version>
97-
<executions>
98-
<execution>
99-
<id>attach-sources</id>
100-
<goals>
101-
<goal>jar-no-fork</goal>
102-
</goals>
103-
</execution>
104-
</executions>
105-
</plugin>
106-
<plugin>
107-
<groupId>org.apache.maven.plugins</groupId>
108-
<artifactId>maven-javadoc-plugin</artifactId>
109-
<version>2.9.1</version>
110-
<configuration>
111-
<additionalparam>-Xdoclint:none</additionalparam>
112-
</configuration>
113-
<executions>
114-
<execution>
115-
<id>attach-javadocs</id>
116-
<goals>
117-
<goal>jar</goal>
118-
</goals>
119-
</execution>
120-
</executions>
121-
</plugin>
122-
<plugin>
123-
<groupId>org.apache.maven.plugins</groupId>
124-
<artifactId>maven-gpg-plugin</artifactId>
125-
<version>1.5</version>
126-
<executions>
127-
<execution>
128-
<id>sign-artifacts</id>
129-
<phase>verify</phase>
130-
<goals>
131-
<goal>sign</goal>
132-
</goals>
133-
</execution>
134-
</executions>
135-
</plugin>
136-
<plugin>
137-
<groupId>org.sonatype.plugins</groupId>
138-
<artifactId>nexus-staging-maven-plugin</artifactId>
139-
<version>1.6.3</version>
140-
<extensions>true</extensions>
141-
<configuration>
142-
<serverId>sonatype-nexus-staging</serverId>
143-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
144-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
145-
</configuration>
146-
</plugin>
147-
</plugins>
148-
</build>
149-
</profile>
150-
</profiles>
151-
</project>
39+
<dependencies>
40+
<dependency>
41+
<groupId>joda-time</groupId>
42+
<artifactId>joda-time</artifactId>
43+
<version>2.6</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.amazonaws</groupId>
47+
<artifactId>aws-java-sdk-s3</artifactId>
48+
<version>1.11.163</version>
49+
<scope>provided</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>com.amazonaws</groupId>
53+
<artifactId>aws-java-sdk-kinesis</artifactId>
54+
<version>1.11.163</version>
55+
<scope>provided</scope>
56+
</dependency>
57+
<dependency>
58+
<groupId>com.amazonaws</groupId>
59+
<artifactId>aws-java-sdk-dynamodb</artifactId>
60+
<version>1.11.163</version>
61+
<scope>provided</scope>
62+
</dependency>
63+
</dependencies>
64+
65+
<profiles>
66+
<profile>
67+
<id>dev</id>
68+
<build>
69+
<plugins>
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-javadoc-plugin</artifactId>
73+
<version>2.9.1</version>
74+
<configuration>
75+
<additionalparam>-Xdoclint:none</additionalparam>
76+
</configuration>
77+
<executions>
78+
<execution>
79+
<id>attach-javadocs</id>
80+
<goals>
81+
<goal>jar</goal>
82+
</goals>
83+
</execution>
84+
</executions>
85+
</plugin>
86+
</plugins>
87+
</build>
88+
</profile>
89+
<profile>
90+
<id>release</id>
91+
<build>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-source-plugin</artifactId>
96+
<version>2.2.1</version>
97+
<executions>
98+
<execution>
99+
<id>attach-sources</id>
100+
<goals>
101+
<goal>jar-no-fork</goal>
102+
</goals>
103+
</execution>
104+
</executions>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-javadoc-plugin</artifactId>
109+
<version>2.9.1</version>
110+
<configuration>
111+
<additionalparam>-Xdoclint:none</additionalparam>
112+
</configuration>
113+
<executions>
114+
<execution>
115+
<id>attach-javadocs</id>
116+
<goals>
117+
<goal>jar</goal>
118+
</goals>
119+
</execution>
120+
</executions>
121+
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-gpg-plugin</artifactId>
125+
<version>1.5</version>
126+
<executions>
127+
<execution>
128+
<id>sign-artifacts</id>
129+
<phase>verify</phase>
130+
<goals>
131+
<goal>sign</goal>
132+
</goals>
133+
</execution>
134+
</executions>
135+
</plugin>
136+
<plugin>
137+
<groupId>org.sonatype.plugins</groupId>
138+
<artifactId>nexus-staging-maven-plugin</artifactId>
139+
<version>1.6.3</version>
140+
<extensions>true</extensions>
141+
<configuration>
142+
<serverId>sonatype-nexus-staging</serverId>
143+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
144+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
145+
</configuration>
146+
</plugin>
147+
</plugins>
148+
</build>
149+
</profile>
150+
</profiles>
151+
</project>

0 commit comments

Comments
 (0)