Skip to content

Commit 87ae5e6

Browse files
committed
A sample Web Application
0 parents  commit 87ae5e6

17 files changed

Lines changed: 240 additions & 0 deletions

WebContent/META-INF/MANIFEST.MF

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
Class-Path:
3+

WebContent/WEB-INF/lib/junit.jar

308 KB
Binary file not shown.
53.9 KB
Binary file not shown.

WebContent/WEB-INF/web.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
5+
version="2.4">
6+
7+
<display-name>Sample Web Application</display-name>
8+
<description>
9+
This is a simple web application to demonstrate Jenkins build, test and deploy capabilities along with ANT.
10+
</description>
11+
12+
<servlet>
13+
<servlet-name>SampleServlet</servlet-name>
14+
<servlet-class>example.Calculator</servlet-class>
15+
</servlet>
16+
17+
<servlet-mapping>
18+
<servlet-name>SampleServlet</servlet-name>
19+
<url-pattern>/sample</url-pattern>
20+
</servlet-mapping>
21+
22+
</web-app>

WebContent/images/Arryn.png

73.8 KB
Loading

WebContent/images/Baratheon.png

50.8 KB
Loading

WebContent/images/GOT.jpg

64.3 KB
Loading

WebContent/images/Gardner.png

30.3 KB
Loading

WebContent/images/Harren_Hoare.png

471 KB
Loading

WebContent/images/HouseStark.png

77.8 KB
Loading

0 commit comments

Comments
 (0)