Skip to content

Commit b7d9b2a

Browse files
ludochgae-java-bot
authored andcommitted
Use Servlet 3.1 so that annotation scanning is triggered.
PiperOrigin-RevId: 807961122 Change-Id: I7d3bc779cba725800e7a2cd8bd5787b0c65998cf
1 parent 68c766a commit b7d9b2a

File tree

3 files changed

+11
-11
lines changed
  • e2etests/testlocalapps
    • allinone_jakarta/src/main/webapp/WEB-INF
    • allinone/src/main/webapp/WEB-INF

3 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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

e2etests/testlocalapps/allinone/src/main/webapp/WEB-INF/web.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17-
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
18-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
20-
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
21-
version="2.5">
17+
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
20+
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
21+
version="3.1">
2222

2323
<servlet>
2424
<servlet-name>main</servlet-name>

e2etests/testlocalapps/allinone_jakarta/src/main/webapp/WEB-INF/web.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17-
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
18-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
20-
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
21-
version="2.5">
17+
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
18+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
20+
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
21+
version="3.1">
2222

2323
<servlet>
2424
<servlet-name>main</servlet-name>

0 commit comments

Comments
 (0)