1- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2- xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
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" >
32 <modelVersion >4.0.0</modelVersion >
43 <parent >
54 <groupId >de.dominikschadow.javawebsecurity</groupId >
98 <artifactId >Ch07_XSS_Filter</artifactId >
109 <packaging >war</packaging >
1110 <name >Ch07_XSS_Filter</name >
12- <url >https://github.com/dschadow/JavaWebAppSecurity </url >
11+ <url >https://github.com/dschadow/Java-Web-Security </url >
1312 <description >Chapter 7 XSS filter sample project. Requires a server like Apache Tomcat.
1413
15- Open the web application in your browser at http://localhost:8080/XSSFilter/ </description >
14+ Open the web application in your browser at http://localhost:8080/Ch07_XSS_Filter </description >
1615
17- <properties >
18- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
19- </properties >
20-
2116 <dependencies >
2217 <dependency >
2318 <groupId >org.owasp.esapi</groupId >
2419 <artifactId >esapi</artifactId >
25- <version >2.0.1</version >
2620 </dependency >
2721 <dependency >
2822 <groupId >javax.servlet</groupId >
29- <artifactId >servlet-api</artifactId >
30- <version >2.5</version >
31- <scope >provided</scope >
32- </dependency >
33- <dependency >
34- <groupId >javax.servlet</groupId >
35- <artifactId >jstl</artifactId >
36- <version >1.2</version >
23+ <artifactId >javax.servlet-api</artifactId >
3724 </dependency >
3825 </dependencies >
3926
4027 <build >
41- <finalName >XSSFilter </finalName >
28+ <finalName >Ch07_XSS_Filter </finalName >
4229 <plugins >
4330 <plugin >
4431 <artifactId >maven-compiler-plugin</artifactId >
@@ -55,4 +42,4 @@ Open the web application in your browser at http://localhost:8080/XSSFilter/</de
5542 </plugin >
5643 </plugins >
5744 </build >
58- </project >
45+ </project >
0 commit comments