File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments