Skip to content

Commit 453f9a6

Browse files
committed
[maven-release-plugin] prepare release aws-serverless-java-container-1.4
1 parent 41e37bb commit 453f9a6

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

aws-serverless-java-container-core/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<name>AWS Serverless Java container support - Core</name>
77
<description>Allows Java applications written for a servlet container to run in AWS Lambda</description>
88
<url>https://aws.amazon.com/lambda</url>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010

1111
<parent>
1212
<groupId>com.amazonaws.serverless</groupId>
1313
<artifactId>aws-serverless-java-container</artifactId>
14-
<version>1.4-SNAPSHOT</version>
14+
<version>1.4</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

aws-serverless-java-container-jersey/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<name>AWS Serverless Java container support - Jersey implementation</name>
77
<description>Allows Java applications written for Jersey to run in AWS Lambda</description>
88
<url>https://aws.amazon.com/lambda</url>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010

1111
<parent>
1212
<groupId>com.amazonaws.serverless</groupId>
1313
<artifactId>aws-serverless-java-container</artifactId>
14-
<version>1.4-SNAPSHOT</version>
14+
<version>1.4</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.amazonaws.serverless</groupId>
2626
<artifactId>aws-serverless-java-container-core</artifactId>
27-
<version>1.4-SNAPSHOT</version>
27+
<version>1.4</version>
2828
<exclusions>
2929
<exclusion>
3030
<groupId>com.fasterxml.jackson.core</groupId>

aws-serverless-java-container-spark/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<name>AWS Serverless Java container support - Spark implementation</name>
77
<description>Allows Java applications written for Spark to run in AWS Lambda</description>
88
<url>https://aws.amazon.com/lambda</url>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010

1111
<parent>
1212
<groupId>com.amazonaws.serverless</groupId>
1313
<artifactId>aws-serverless-java-container</artifactId>
14-
<version>1.4-SNAPSHOT</version>
14+
<version>1.4</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.amazonaws.serverless</groupId>
2626
<artifactId>aws-serverless-java-container-core</artifactId>
27-
<version>1.4-SNAPSHOT</version>
27+
<version>1.4</version>
2828
</dependency>
2929

3030
<!-- https://mvnrepository.com/artifact/com.sparkjava/spark-core -->

aws-serverless-java-container-spring/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<name>AWS Serverless Java container support - Spring implementation</name>
77
<description>Allows Java applications written for the Spring framework to run in AWS Lambda</description>
88
<url>https://aws.amazon.com/lambda</url>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010

1111
<parent>
1212
<groupId>com.amazonaws.serverless</groupId>
1313
<artifactId>aws-serverless-java-container</artifactId>
14-
<version>1.4-SNAPSHOT</version>
14+
<version>1.4</version>
1515
<relativePath>..</relativePath>
1616
</parent>
1717

@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>com.amazonaws.serverless</groupId>
2828
<artifactId>aws-serverless-java-container-core</artifactId>
29-
<version>1.4-SNAPSHOT</version>
29+
<version>1.4</version>
3030
</dependency>
3131

3232
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->

aws-serverless-java-container-springboot2/pom.xml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?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">
53
<parent>
64
<artifactId>aws-serverless-java-container</artifactId>
75
<groupId>com.amazonaws.serverless</groupId>
8-
<version>1.4-SNAPSHOT</version>
6+
<version>1.4</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

@@ -14,7 +12,7 @@
1412
<name>AWS Serverless Java container support - SpringBoot 2 implementation</name>
1513
<description>Allows Java applications written for SpringBoot 2 to run in AWS Lambda</description>
1614
<url>https://aws.amazon.com/lambda</url>
17-
<version>1.4-SNAPSHOT</version>
15+
<version>1.4</version>
1816

1917
<properties>
2018
<spring.version>5.1.9.RELEASE</spring.version>
@@ -30,7 +28,7 @@
3028
<dependency>
3129
<groupId>com.amazonaws.serverless</groupId>
3230
<artifactId>aws-serverless-java-container-core</artifactId>
33-
<version>1.4-SNAPSHOT</version>
31+
<version>1.4</version>
3432
</dependency>
3533
<!-- https://mvnrepository.com/artifact/io.projectreactor/reactor-core -->
3634
<dependency>

aws-serverless-java-container-struts2/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<name>AWS Serverless Java container support - Struts2 implementation</name>
77
<description>Allows Java applications written for the Struts2 framework to run in AWS Lambda</description>
88
<url>https://aws.amazon.com/lambda</url>
9-
<version>1.4-SNAPSHOT</version>
9+
<version>1.4</version>
1010

1111
<parent>
1212
<groupId>com.amazonaws.serverless</groupId>
1313
<artifactId>aws-serverless-java-container</artifactId>
14-
<version>1.4-SNAPSHOT</version>
14+
<version>1.4</version>
1515
</parent>
1616

1717
<properties>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.amazonaws.serverless</groupId>
2525
<artifactId>aws-serverless-java-container-core</artifactId>
26-
<version>1.4-SNAPSHOT</version>
26+
<version>1.4</version>
2727
</dependency>
2828

2929
<dependency>

aws-serverless-jersey-archetype/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws.serverless</groupId>
66
<artifactId>aws-serverless-java-container</artifactId>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
</parent>
99

1010
<groupId>com.amazonaws.serverless.archetypes</groupId>
1111
<artifactId>aws-serverless-jersey-archetype</artifactId>
12-
<version>1.4-SNAPSHOT</version>
12+
<version>1.4</version>
1313
<packaging>maven-archetype</packaging>
1414

1515
<scm>

aws-serverless-spark-archetype/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws.serverless</groupId>
66
<artifactId>aws-serverless-java-container</artifactId>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
</parent>
99

1010
<groupId>com.amazonaws.serverless.archetypes</groupId>
1111
<artifactId>aws-serverless-spark-archetype</artifactId>
12-
<version>1.4-SNAPSHOT</version>
12+
<version>1.4</version>
1313
<packaging>maven-archetype</packaging>
1414

1515
<scm>

aws-serverless-spring-archetype/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws.serverless</groupId>
66
<artifactId>aws-serverless-java-container</artifactId>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
</parent>
99

1010
<groupId>com.amazonaws.serverless.archetypes</groupId>
1111
<artifactId>aws-serverless-spring-archetype</artifactId>
12-
<version>1.4-SNAPSHOT</version>
12+
<version>1.4</version>
1313
<packaging>maven-archetype</packaging>
1414

1515
<scm>

aws-serverless-springboot-archetype/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws.serverless</groupId>
66
<artifactId>aws-serverless-java-container</artifactId>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
</parent>
99

1010
<groupId>com.amazonaws.serverless.archetypes</groupId>
1111
<artifactId>aws-serverless-springboot-archetype</artifactId>
12-
<version>1.4-SNAPSHOT</version>
12+
<version>1.4</version>
1313
<packaging>maven-archetype</packaging>
1414

1515
<scm>

aws-serverless-springboot2-archetype/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws.serverless</groupId>
66
<artifactId>aws-serverless-java-container</artifactId>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
</parent>
99

1010
<groupId>com.amazonaws.serverless.archetypes</groupId>
1111
<artifactId>aws-serverless-springboot2-archetype</artifactId>
12-
<version>1.4-SNAPSHOT</version>
12+
<version>1.4</version>
1313
<packaging>maven-archetype</packaging>
1414

1515
<scm>

aws-serverless-struts2-archetype/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<parent>
55
<groupId>com.amazonaws.serverless</groupId>
66
<artifactId>aws-serverless-java-container</artifactId>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
</parent>
99

1010
<groupId>com.amazonaws.serverless.archetypes</groupId>
1111
<artifactId>aws-serverless-struts2-archetype</artifactId>
12-
<version>1.4-SNAPSHOT</version>
12+
<version>1.4</version>
1313
<packaging>maven-archetype</packaging>
1414

1515
<scm>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.amazonaws.serverless</groupId>
55
<artifactId>aws-serverless-java-container</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.4-SNAPSHOT</version>
7+
<version>1.4</version>
88
<name>AWS Serverless Java container</name>
99

1010
<!-- https://mvnrepository.com/artifact/org.sonatype.oss/oss-parent -->

0 commit comments

Comments
 (0)