Skip to content

Commit 3e5bb06

Browse files
committed
Added project Ch05_SessionHandling
1 parent e327df2 commit 3e5bb06

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

Ch05_SessionHandling/pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>de.dominikschadow.javawebsecurity</groupId>
5+
<artifactId>javawebsecurity</artifactId>
6+
<version>1.0.0</version>
7+
</parent>
8+
<artifactId>Ch05_SessionHandling</artifactId>
9+
<packaging>jar</packaging>
10+
<name>Ch05_SessionHandling</name>
11+
<url>https://github.com/dschadow/Java-Web-Security</url>
12+
<description>Chapter 5 Session Handling sample project. Requires a server like Apache Tomcat.
13+
14+
Open the web application in your browser at http://localhost:8080/Ch05_SessionHandling</description>
15+
16+
<dependencies>
17+
</dependencies>
18+
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<artifactId>maven-compiler-plugin</artifactId>
23+
<version>3.1</version>
24+
<configuration>
25+
<source>1.7</source>
26+
<target>1.7</target>
27+
</configuration>
28+
</plugin>
29+
</plugins>
30+
</build>
31+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<module>Ch04_OutputEscaping</module>
7373
<module>Ch04_OutputEscapingSpring</module>
7474
<module>Ch05_AccessReferenceMaps</module>
75+
<module>Ch05_SessionHandling</module>
7576
<module>Ch06_SQL-Injection</module>
7677
<module>Ch06_XPath-Injection</module>
7778
<module>Ch07_XSS</module>

0 commit comments

Comments
 (0)