Skip to content

Commit baefb78

Browse files
ludochrenovate-botgae-java-bot
authored
from main (#414)
* Use Servlet 3.1 so that annotation scanning is triggered. PiperOrigin-RevId: 807961122 Change-Id: I7d3bc779cba725800e7a2cd8bd5787b0c65998cf * Upgrade GAE Java version to 3.0.0-beta and prepare next version 3.0.0-SNAPSHOT PiperOrigin-RevId: 809022511 Change-Id: I9636317c5d42acfb1d23a571bfc510cafb735fc3 * Update all non-major dependencies --------- Co-authored-by: Mend Renovate <bot@renovateapp.com> Co-authored-by: GAE Java Team <gae-java-bot@google.com>
1 parent 0d3f18f commit baefb78

132 files changed

Lines changed: 156 additions & 156 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
[![Maven][maven-version-image]][maven-version-link]
1818
[![Code of conduct](https://img.shields.io/badge/%E2%9D%A4-code%20of%20conduct-blue.svg)](https://github.com/GoogleCloudPlatform/appengine-java-standard/blob/main/CODE_OF_CONDUCT.md)
1919

20-
# Google App Engine Standard Environment Source Code for Java 17, Java 21, Java25
20+
# Google App Engine Standard Environment Source Code for Java 17, Java 21, Java 25.
2121

2222

2323
This repository contains the Java Source Code for [Google App Engine
@@ -100,7 +100,7 @@ Source code for all public APIs for com.google.appengine.api.* packages.
100100
...
101101
```
102102
103-
* Maven Java 25 Alpha with Jarkata EE 11 support pom.xml (EE10 is not supported in Java25, EE11 is fully compatible with EE10)
103+
* Maven Java 25 Alpha with Jakarta EE 11 support pom.xml (EE10 is not supported in Java25, EE11 is fully compatible with EE10)
104104
105105
```
106106
<packaging>war</packaging><!-- Servlet 6.1 WAR packaging-->
@@ -109,7 +109,7 @@ Source code for all public APIs for com.google.appengine.api.* packages.
109109
<dependency>
110110
<groupId>com.google.appengine</groupId>
111111
<artifactId>appengine-api-1.0-sdk</artifactId>
112-
<version>2.0.38</version><!-- or later-->
112+
<version>3.0.0-beta</version><!-- or later-->
113113
</dependency>
114114
<dependency>
115115
<groupId>jakarta.servlet</groupId>
@@ -121,7 +121,7 @@ Source code for all public APIs for com.google.appengine.api.* packages.
121121
```
122122
123123
124-
* Java 21/25 with javax EE8 profile appengine-web.xml
124+
* Java 21/25 with javax EE8 profile appengine-web.xml
125125
126126
```
127127
<?xml version="1.0" encoding="utf-8"?>

TRYLATESTBITSINPROD.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ top of your web application and change the entrypoint to boot with these jars in
4949
./mvnw clean install
5050
```
5151

52-
Let's assume the current build version is `3.0.0-beta-SNAPSHOT`.
52+
Let's assume the current build version is `3.0.0-SNAPSHOT`.
5353

5454
See the output of the runtime deployment module which contains all the jars needed by the runtime:
5555

@@ -70,7 +70,7 @@ Add the dependency for the GAE runtime jars in your application pom.xml file:
7070

7171
```
7272
<properties>
73-
<appengine.runtime.version>3.0.0-beta-SNAPSHOT</appengine.runtime.version>
73+
<appengine.runtime.version>3.0.0-SNAPSHOT</appengine.runtime.version>
7474
<appengine.runtime.location>target/${project.artifactId}-${project.version}</appengine.runtime.location>
7575
<properties>
7676
...
@@ -148,7 +148,7 @@ In the appengine-web.xml, modify the entrypoint to use the bundled runtime jars
148148
```
149149
<?xml version="1.0" encoding="utf-8"?>
150150
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
151-
<runtime>java17</runtime>
151+
<runtime>java21</runtime>
152152
<app-engine-apis>true</app-engine-apis>
153153
<system-properties>
154154
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.google.appengine</groupId>
2323
<artifactId>parent</artifactId>
24-
<version>3.0.0-beta-SNAPSHOT</version>
24+
<version>3.0.0-SNAPSHOT</version>
2525
</parent>
2626
<properties>
2727
<maven.deploy.skip>true</maven.deploy.skip>

api_dev/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.google.appengine</groupId>
2525
<artifactId>parent</artifactId>
26-
<version>3.0.0-beta-SNAPSHOT</version>
26+
<version>3.0.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<packaging>jar</packaging>

api_legacy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.google.appengine</groupId>
2424
<artifactId>parent</artifactId>
25-
<version>3.0.0-beta-SNAPSHOT</version>
25+
<version>3.0.0-SNAPSHOT</version>
2626
</parent>
2727

2828
<packaging>jar</packaging>

appengine-api-1.0-sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com.google.appengine</groupId>
2222
<artifactId>parent</artifactId>
23-
<version>3.0.0-beta-SNAPSHOT</version>
23+
<version>3.0.0-SNAPSHOT</version>
2424
</parent>
2525
<packaging>jar</packaging>
2626
<name>AppEngine :: appengine-api-1.0-sdk</name>

appengine-api-stubs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.google.appengine</groupId>
2525
<artifactId>parent</artifactId>
26-
<version>3.0.0-beta-SNAPSHOT</version>
26+
<version>3.0.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<packaging>jar</packaging>

appengine_init/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.google.appengine</groupId>
2525
<artifactId>parent</artifactId>
26-
<version>3.0.0-beta-SNAPSHOT</version>
26+
<version>3.0.0-SNAPSHOT</version>
2727
</parent>
2828

2929
<packaging>jar</packaging>

appengine_jsr107/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>com.google.appengine</groupId>
2828
<artifactId>parent</artifactId>
29-
<version>3.0.0-beta-SNAPSHOT</version>
29+
<version>3.0.0-SNAPSHOT</version>
3030
</parent>
3131

3232
<dependencies>

appengine_resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.google.appengine</groupId>
2323
<artifactId>parent</artifactId>
24-
<version>3.0.0-beta-SNAPSHOT</version>
24+
<version>3.0.0-SNAPSHOT</version>
2525
</parent>
2626
<packaging>jar</packaging>
2727
<name>AppEngine :: appengine-resources</name>

0 commit comments

Comments
 (0)