forked from bhupinderjnu/SampleWebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.xml
22 lines (18 loc) · 775 Bytes
/
web.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>Sample Web Application</display-name>
<description>
This is a simple web application to demonstrate Jenkins build, test and deploy capabilities along with ANT.
</description>
<servlet>
<servlet-name>SampleServlet</servlet-name>
<servlet-class>example.Calculator</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SampleServlet</servlet-name>
<url-pattern>/sample</url-pattern>
</servlet-mapping>
</web-app>