diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-03-28 21:06:57 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-03-28 21:06:57 +0530 |
| commit | dfc57517c8fd60f862029d95c25aa01410578c69 (patch) | |
| tree | b9b71e5516c3280564507c7432dedd75cba60acf /maven/02-hello-webapp/src/main/webapp/WEB-INF | |
| parent | a405bf7f782f916236a9afd238eb50317fac2bf6 (diff) | |
Added hello webapp sample application
Diffstat (limited to 'maven/02-hello-webapp/src/main/webapp/WEB-INF')
| -rw-r--r-- | maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml b/maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..b9c921f --- /dev/null +++ b/maven/02-hello-webapp/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<web-app + version="4.0" + xmlns="http://xmlns.jcp.org/xml/ns/javaee" + xmlns:javaee="http://xmlns.jcp.org/xml/ns/javaee" + xmlns:xml="http://www.w3.org/XML/1998/namespace" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> + <display-name>Archetype Created Web Application</display-name> +</web-app> |
