File tree 13 files changed +31
-33
lines changed
aws-serverless-java-container-core
aws-serverless-java-container-jersey
aws-serverless-java-container-spark
aws-serverless-java-container-spring
aws-serverless-java-container-springboot2
aws-serverless-java-container-struts2
aws-serverless-jersey-archetype
aws-serverless-spark-archetype
aws-serverless-spring-archetype
aws-serverless-springboot-archetype
aws-serverless-springboot2-archetype
aws-serverless-struts2-archetype
13 files changed +31
-33
lines changed Original file line number Diff line number Diff line change 6
6
<name >AWS Serverless Java container support - Core</name >
7
7
<description >Allows Java applications written for a servlet container to run in AWS Lambda</description >
8
8
<url >https://aws.amazon.com/lambda</url >
9
- <version >1.4-SNAPSHOT </version >
9
+ <version >1.4</version >
10
10
11
11
<parent >
12
12
<groupId >com.amazonaws.serverless</groupId >
13
13
<artifactId >aws-serverless-java-container</artifactId >
14
- <version >1.4-SNAPSHOT </version >
14
+ <version >1.4</version >
15
15
<relativePath >..</relativePath >
16
16
</parent >
17
17
Original file line number Diff line number Diff line change 6
6
<name >AWS Serverless Java container support - Jersey implementation</name >
7
7
<description >Allows Java applications written for Jersey to run in AWS Lambda</description >
8
8
<url >https://aws.amazon.com/lambda</url >
9
- <version >1.4-SNAPSHOT </version >
9
+ <version >1.4</version >
10
10
11
11
<parent >
12
12
<groupId >com.amazonaws.serverless</groupId >
13
13
<artifactId >aws-serverless-java-container</artifactId >
14
- <version >1.4-SNAPSHOT </version >
14
+ <version >1.4</version >
15
15
<relativePath >..</relativePath >
16
16
</parent >
17
17
24
24
<dependency >
25
25
<groupId >com.amazonaws.serverless</groupId >
26
26
<artifactId >aws-serverless-java-container-core</artifactId >
27
- <version >1.4-SNAPSHOT </version >
27
+ <version >1.4</version >
28
28
<exclusions >
29
29
<exclusion >
30
30
<groupId >com.fasterxml.jackson.core</groupId >
Original file line number Diff line number Diff line change 6
6
<name >AWS Serverless Java container support - Spark implementation</name >
7
7
<description >Allows Java applications written for Spark to run in AWS Lambda</description >
8
8
<url >https://aws.amazon.com/lambda</url >
9
- <version >1.4-SNAPSHOT </version >
9
+ <version >1.4</version >
10
10
11
11
<parent >
12
12
<groupId >com.amazonaws.serverless</groupId >
13
13
<artifactId >aws-serverless-java-container</artifactId >
14
- <version >1.4-SNAPSHOT </version >
14
+ <version >1.4</version >
15
15
<relativePath >..</relativePath >
16
16
</parent >
17
17
24
24
<dependency >
25
25
<groupId >com.amazonaws.serverless</groupId >
26
26
<artifactId >aws-serverless-java-container-core</artifactId >
27
- <version >1.4-SNAPSHOT </version >
27
+ <version >1.4</version >
28
28
</dependency >
29
29
30
30
<!-- https://mvnrepository.com/artifact/com.sparkjava/spark-core -->
Original file line number Diff line number Diff line change 6
6
<name >AWS Serverless Java container support - Spring implementation</name >
7
7
<description >Allows Java applications written for the Spring framework to run in AWS Lambda</description >
8
8
<url >https://aws.amazon.com/lambda</url >
9
- <version >1.4-SNAPSHOT </version >
9
+ <version >1.4</version >
10
10
11
11
<parent >
12
12
<groupId >com.amazonaws.serverless</groupId >
13
13
<artifactId >aws-serverless-java-container</artifactId >
14
- <version >1.4-SNAPSHOT </version >
14
+ <version >1.4</version >
15
15
<relativePath >..</relativePath >
16
16
</parent >
17
17
26
26
<dependency >
27
27
<groupId >com.amazonaws.serverless</groupId >
28
28
<artifactId >aws-serverless-java-container-core</artifactId >
29
- <version >1.4-SNAPSHOT </version >
29
+ <version >1.4</version >
30
30
</dependency >
31
31
32
32
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
3
<parent >
6
4
<artifactId >aws-serverless-java-container</artifactId >
7
5
<groupId >com.amazonaws.serverless</groupId >
8
- <version >1.4-SNAPSHOT </version >
6
+ <version >1.4</version >
9
7
</parent >
10
8
<modelVersion >4.0.0</modelVersion >
11
9
14
12
<name >AWS Serverless Java container support - SpringBoot 2 implementation</name >
15
13
<description >Allows Java applications written for SpringBoot 2 to run in AWS Lambda</description >
16
14
<url >https://aws.amazon.com/lambda</url >
17
- <version >1.4-SNAPSHOT </version >
15
+ <version >1.4</version >
18
16
19
17
<properties >
20
18
<spring .version>5.1.9.RELEASE</spring .version>
30
28
<dependency >
31
29
<groupId >com.amazonaws.serverless</groupId >
32
30
<artifactId >aws-serverless-java-container-core</artifactId >
33
- <version >1.4-SNAPSHOT </version >
31
+ <version >1.4</version >
34
32
</dependency >
35
33
<!-- https://mvnrepository.com/artifact/io.projectreactor/reactor-core -->
36
34
<dependency >
Original file line number Diff line number Diff line change 6
6
<name >AWS Serverless Java container support - Struts2 implementation</name >
7
7
<description >Allows Java applications written for the Struts2 framework to run in AWS Lambda</description >
8
8
<url >https://aws.amazon.com/lambda</url >
9
- <version >1.4-SNAPSHOT </version >
9
+ <version >1.4</version >
10
10
11
11
<parent >
12
12
<groupId >com.amazonaws.serverless</groupId >
13
13
<artifactId >aws-serverless-java-container</artifactId >
14
- <version >1.4-SNAPSHOT </version >
14
+ <version >1.4</version >
15
15
</parent >
16
16
17
17
<properties >
23
23
<dependency >
24
24
<groupId >com.amazonaws.serverless</groupId >
25
25
<artifactId >aws-serverless-java-container-core</artifactId >
26
- <version >1.4-SNAPSHOT </version >
26
+ <version >1.4</version >
27
27
</dependency >
28
28
29
29
<dependency >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.amazonaws.serverless</groupId >
6
6
<artifactId >aws-serverless-java-container</artifactId >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
</parent >
9
9
10
10
<groupId >com.amazonaws.serverless.archetypes</groupId >
11
11
<artifactId >aws-serverless-jersey-archetype</artifactId >
12
- <version >1.4-SNAPSHOT </version >
12
+ <version >1.4</version >
13
13
<packaging >maven-archetype</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.amazonaws.serverless</groupId >
6
6
<artifactId >aws-serverless-java-container</artifactId >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
</parent >
9
9
10
10
<groupId >com.amazonaws.serverless.archetypes</groupId >
11
11
<artifactId >aws-serverless-spark-archetype</artifactId >
12
- <version >1.4-SNAPSHOT </version >
12
+ <version >1.4</version >
13
13
<packaging >maven-archetype</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.amazonaws.serverless</groupId >
6
6
<artifactId >aws-serverless-java-container</artifactId >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
</parent >
9
9
10
10
<groupId >com.amazonaws.serverless.archetypes</groupId >
11
11
<artifactId >aws-serverless-spring-archetype</artifactId >
12
- <version >1.4-SNAPSHOT </version >
12
+ <version >1.4</version >
13
13
<packaging >maven-archetype</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.amazonaws.serverless</groupId >
6
6
<artifactId >aws-serverless-java-container</artifactId >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
</parent >
9
9
10
10
<groupId >com.amazonaws.serverless.archetypes</groupId >
11
11
<artifactId >aws-serverless-springboot-archetype</artifactId >
12
- <version >1.4-SNAPSHOT </version >
12
+ <version >1.4</version >
13
13
<packaging >maven-archetype</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.amazonaws.serverless</groupId >
6
6
<artifactId >aws-serverless-java-container</artifactId >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
</parent >
9
9
10
10
<groupId >com.amazonaws.serverless.archetypes</groupId >
11
11
<artifactId >aws-serverless-springboot2-archetype</artifactId >
12
- <version >1.4-SNAPSHOT </version >
12
+ <version >1.4</version >
13
13
<packaging >maven-archetype</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >com.amazonaws.serverless</groupId >
6
6
<artifactId >aws-serverless-java-container</artifactId >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
</parent >
9
9
10
10
<groupId >com.amazonaws.serverless.archetypes</groupId >
11
11
<artifactId >aws-serverless-struts2-archetype</artifactId >
12
- <version >1.4-SNAPSHOT </version >
12
+ <version >1.4</version >
13
13
<packaging >maven-archetype</packaging >
14
14
15
15
<scm >
Original file line number Diff line number Diff line change 4
4
<groupId >com.amazonaws.serverless</groupId >
5
5
<artifactId >aws-serverless-java-container</artifactId >
6
6
<packaging >pom</packaging >
7
- <version >1.4-SNAPSHOT </version >
7
+ <version >1.4</version >
8
8
<name >AWS Serverless Java container</name >
9
9
10
10
<!-- https://mvnrepository.com/artifact/org.sonatype.oss/oss-parent -->
You can’t perform that action at this time.
0 commit comments