Download owasp-java-html-sanitizer-20160628.1.jar file

Introduction

You can download owasp-java-html-sanitizer-20160628.1.jar in this page.

License

New BSD License

Type List

owasp-java-html-sanitizer-20160628.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer/pom.properties
META-INF/maven/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer/pom.xml
org.owasp.html.AbstractTokenStream.class
org.owasp.html.AllExamples.class
org.owasp.html.AttributePolicy.class
org.owasp.html.AutoCloseableHtmlStreamRenderer.class
org.owasp.html.CssGrammar.class
org.owasp.html.CssSchema.class
org.owasp.html.CssTokens.class
org.owasp.html.ElementAndAttributePolicies.class
org.owasp.html.ElementAndAttributePolicyBasedSanitizerPolicy.class
org.owasp.html.ElementPolicy.class
org.owasp.html.Encoding.class
org.owasp.html.FilterUrlByProtocolAttributePolicy.class
org.owasp.html.Handler.class
org.owasp.html.HtmlChangeListener.class
org.owasp.html.HtmlChangeReporter.class
org.owasp.html.HtmlEntities.class
org.owasp.html.HtmlInputSplitter.class
org.owasp.html.HtmlLexer.class
org.owasp.html.HtmlPolicyBuilder.class
org.owasp.html.HtmlSanitizer.class
org.owasp.html.HtmlStreamEventProcessor.class
org.owasp.html.HtmlStreamEventReceiver.class
org.owasp.html.HtmlStreamEventReceiverWrapper.class
org.owasp.html.HtmlStreamRenderer.class
org.owasp.html.HtmlTextEscapingMode.class
org.owasp.html.HtmlToken.class
org.owasp.html.HtmlTokenType.class
org.owasp.html.JoinedAttributePolicy.class
org.owasp.html.JoinedElementPolicy.class
org.owasp.html.PolicyFactory.class
org.owasp.html.Sanitizers.class
org.owasp.html.StandardUrlAttributePolicy.class
org.owasp.html.Strings.class
org.owasp.html.StylingPolicy.class
org.owasp.html.TCB.class
org.owasp.html.TagBalancingHtmlStreamEventReceiver.class
org.owasp.html.TokenStream.class
org.owasp.html.Trie.class
org.owasp.html.examples.EbayPolicyExample.class
org.owasp.html.examples.SlashdotPolicyExample.class
org.owasp.html.examples.UrlTextExample.class
org.owasp.html.package-info.class

Pom

owasp-java-html-sanitizer-20160628.1.pom file content.

<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>
  <packaging>jar</packaging>
  <parent>
    <relativePath>parent</relativePath>
    <groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
    <artifactId>parent</artifactId>
    <version>20160628.1</version>
  </parent>

  <name>OWASP Java HTML Sanitizer</name>

  <build>
    <plugins>
      <!-- http://www.javaworld.com/article/2074515/core-java/
           unit-test-code-coverage-with-maven-and-jacoco.html -->
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>0.7.5.201505241946</version>
        <configuration>
          <destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
          <dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
        </configuration>
        <executions>
          <execution>
            <id>jacoco-initialize</id>
            <goals>
              <goal>prepare-agent</goal>
            </goals>
          </execution>
          <execution>
            <id>jacoco-site</id>
            <phase>package</phase>
            <goals>
              <goal>report</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>annotations</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>nu.validator.htmlparser</groupId>
      <artifactId>htmlparser</artifactId>
      <version>1.4</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <reporting>
    <plugins>
      <!-- `mvn compile site` will generate target/site/findbugs.html -->
      <!-- http://gleclaire.github.io/findbugs-maven-plugin/dependency-info.html -->
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>3.0.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>
</project>

POM Entry

<dependency>
   <groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
   <artifactId>owasp-java-html-sanitizer</artifactId>
   <version>20160628.1</version>
</dependency>

Download

If you think the following owasp-java-html-sanitizer-20160628.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download owasp-java-html-sanitizer-20160628.1.jar file




PreviousNext

Related