1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- See http://maven.apache.org/ref/3.0.3/maven-model/maven.html for details
- of the meanings of various elements.
- See the README in the maven directory for an explanation of the
- strange syntactic features in this file.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>owasp-java-html-sanitizer</artifactId>
<groupId>owasp-java-html-sanitizer</groupId>
<version>r88</version> <!--##REPLACE##<version>+++version+++</version>##END##-->
<packaging>jar</packaging>
<name>OWASP Java HTML Sanitizer</name>
<description>
A fast and easy to configure HTML Sanitizer written in Java which
lets you include HTML authored by third-parties in your web
application while protecting against XSS.
</description>
<url>http://code.google.com/p/owasp-java-html-sanitizer</url>
<organization>
<name>OWASP</name>
<url>http://www.owasp.org/</url>
</organization>
<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
</license>
</licenses>
<dependencies>
<dependency>
<!-- http://repo2.maven.org/maven2/com/google/guava/guava/ -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>r09</version>
</dependency>
<dependency>
<!-- http://findbugs.googlecode.com/svn/trunk/ -->
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.9</version>
</dependency>
</dependencies>
</project>
|