owasp-java-html-sanitizer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.owasp-java-html-sanitizer</groupId> <artifactId>owasp-java-html-sanitizer</artifactId> <version>20150501.1</version> </dependency>
<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> <groupId>com.googlecode.owasp-java-html-sanitizer</groupId> <artifactId>owasp-java-html-sanitizer</artifactId> <packaging>jar</packaging> <!-- When the version ends with "-SNAPSHOT", then `mvn deploy` moves it to the snapshot directory instead of into staging proper. --> <version>20150501.1</version> <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>https://github.com/OWASP/java-html-sanitizer</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:OWASP/java-html-sanitizer.git</connection> <developerConnection>scm:git:git@github.com:OWASP/java-html-sanitizer.git</developerConnection> <url>https://github.com/OWASP/java-html-sanitizer</url> </scm> <!-- https://docs.sonatype.org/display/Repository/ Sonatype+OSS+Maven+Repository+Usage+Guide #SonatypeOSSMavenRepositoryUsageGuide-7a.1.POMandsettingsconfig --> <!--parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent--> <!-- http://central.sonatype.org/pages/apache-maven.html --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- For building the source jar. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- For building the javadoc jar. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Sign all the components sent to ossrh The credentials are pulled from ~/.m2/settings.xml --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <developers> <developer> <id>mikesamuel</id> <name>Mike Samuel</name> <email>mikesamuel@gmail.com</email> </developer> </developers> <mailingLists> <mailingList> <name>User Support List</name> <subscribe>owasp-java-html-sanitizer-support+subscribe@googlegroups.com</subscribe> <unsubscribe>owasp-java-html-sanitizer-support+unsubscribe@googlegroups.com</unsubscribe> <archive>https://groups.google.com/forum/#!forum/owasp-java-html-sanitizer-support</archive> </mailingList> </mailingLists> <dependencies> <dependency> <!-- http://repo2.maven.org/maven2/com/google/guava/guava/ --> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <!-- We depend on 11 because it is the last which works with JDK 5 which we want to link against. --> <version>[11.0,)</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>[1.4,)</version> </dependency> <!-- http://code.google.com/p/findbugs/ --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>[1.3.9,)</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>[1.3.9,)</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>[3.8.1,)</version> <scope>test</scope> </dependency> <dependency> <groupId>nu.validator.htmlparser</groupId> <artifactId>htmlparser</artifactId> <version>[1.2.1,)</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <!-- `mvn compile site` will generate target/site/findbugs.html --> <!-- http://mojo.codehaus.org/findbugs-maven-plugin/usage.html --> <!-- http://www.petrikainulainen.net/programming/maven/findbugs-maven-plugin-tutorial/ --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <!-- Enables analysis which takes more memory but finds more bugs. If you run out of memory, changes the value of the effort element to 'Low'. --> <effort>Max</effort> <!-- Reports all bugs (other values are medium and max) --> <threshold>Low</threshold> </configuration> </plugin> </plugins> </reporting> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>