组织ID: |
org.owasp.antisamy |
项目ID: |
antisamy |
版本: |
1.5.9 |
最后修改时间: |
2020-03-10 09:48:04 |
包类型: |
jar |
标题: |
OWASP AntiSamy |
描述: |
A library for performing fast, configurable cleansing of HTML coming from untrusted sources. |
相关URL: |
https://oss.sonatype.org/content/repositories/snapshots |
大小: |
141.05KB |
|
Maven引入代码: |
<dependency>
<groupId>org.owasp.antisamy</groupId>
<artifactId>antisamy</artifactId>
<version>1.5.9</version>
</dependency>
|
Gradle引入代码: |
org.owasp.antisamy:antisamy:1.5.9
|
下载Jar包: |
|
POM文件内容: |
<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>org.owasp.antisamy</groupId>
<artifactId>antisamy</artifactId>
<packaging>jar</packaging>
<version>1.5.9</version>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<name>OWASP AntiSamy</name>
<description>A library for performing fast, configurable cleansing of HTML coming from untrusted sources.</description>
<url>https://github.com/nahsra/antisamy</url>
<developers>
<developer>
<id>nahsra</id>
<name>Arshan Dabirsiaghi</name>
<email>arshan.dabirsiaghi@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>BSD 3</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:nahsra/antisamy.git</connection>
<url>scm:git:git@github.com:nahsra/antisamy.git</url>
<developerConnection>scm:git:git@github.com:nahsra/antisamy.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.4.01</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-css</artifactId>
<version>1.12</version>
<exclusions>
<!-- exclude this as batik-css 1.12 has a dependency that uses commons-logging 1.0.4 and we want to eliminate the convergence mismatch -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sourceforge.nekohtml</groupId>
<artifactId>nekohtml</artifactId>
<version>1.9.22</version>
<exclusions>
<!-- exclude this as nekohtml 1.9.22 uses xercesImpl 2.11.0 and we want to eliminate the convergence mismatch -->
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.12</version>
<exclusions>
<!-- exclude this as httpclient 4.5.12 uses commons-codec 1.11 and we want to eliminate the convergence mismatch -->
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.14</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<testSource>1.7</testSource>
<testTarget>1.7</testTarget>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>install</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<mainClass>org.owasp.validator.html.AntiSamy</mainClass>
<packageName>org.owasp.validator.html</packageName>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<classpathPrefix />
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.12.2</version> <!-- spotbugs 4.0.0 has been released, but maven plugin for 4.x not yet released. -->
<dependencies>
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs. Not necessary at this time. - - >
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>3.1.12</version>
</dependency -->
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.5</version>
<reportSets>
<reportSet>
<reports>
<report>dependency-updates-report</report>
<report>plugin-updates-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
<reportSets>
<reportSet>
<reports>
<report>dependency-convergence</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
AntiSamy_no_NB.properties
org.owasp.validator.css.CssValidator.class
org.owasp.validator.html.util.ErrorMessageUtil.class
org.owasp.validator.html.Policy$ParseContext.class
org.owasp.validator.html.scan.ASXHTMLSerializer.class
antisamy.xml
antisamy-tinymce.xml
org.owasp.validator.css.CssScanner.class
org.owasp.validator.html.InternalPolicy.class
org.owasp.validator.html.scan.AntiSamyDOMScanner$CachedItem.class
AntiSamy_en_AU.properties
AntiSamy_zh_CN.properties
AntiSamy_de_DE.properties
org.owasp.validator.html.util.XMLUtil.class
org.owasp.validator.html.scan.ASHTMLSerializer.class
AntiSamy_pt_PT.properties
antisamy-ebay.xml
antisamy.xsd
org.owasp.validator.html.util.URIUtils.class
org.owasp.validator.html.scan.MagicSAXFilter.class
org.owasp.validator.html.scan.AntiSamySAXScanner$1.class
AntiSamy_it_IT.properties
AntiSamy_es_MX.properties
META-INF/maven/org.owasp.antisamy/antisamy/pom.properties
AntiSamy_pt_BR.properties
org.owasp.validator.html.CleanResults$1.class
org.owasp.validator.html.AntiSamy.class
org.owasp.validator.html.CleanResults.class
org.owasp.validator.html.scan.AntiSamySAXScanner$CachedItem.class
AntiSamy_ru_RU.properties
AntiSamy_en_CA.properties
org.owasp.validator.css.UnknownSelectorException.class
org.owasp.validator.html.scan.Constants.class
AntiSamy_en_GB.properties
META-INF/maven/org.owasp.antisamy/antisamy/pom.xml
org.owasp.validator.css.ExternalCssScanner.class
org.owasp.validator.html.ScanException.class
org.owasp.validator.html.util.HTMLEntityEncoder.class
org.owasp.validator.html.scan.Constants$1.class
org.owasp.validator.html.scan.AntiSamyDOMScanner.class
org.owasp.validator.html.PolicyException.class
org.owasp.validator.html.TagMatcher.class
org.owasp.validator.html.model.Tag$1.class
org.owasp.validator.html.model.Tag.class
org.owasp.validator.html.Policy$1$1.class
antisamy-anythinggoes.xml
org.owasp.validator.css.CssHandler.class
org.owasp.validator.html.Policy.class
org.owasp.validator.html.scan.AbstractAntiSamyScanner.class
org.owasp.validator.html.scan.AntiSamyDOMScanner$1.class
org.owasp.validator.html.scan.MagicSAXFilter$Ops.class
org.owasp.validator.html.scan.AntiSamySAXScanner.class
org.owasp.validator.html.Policy$1.class
org.owasp.validator.html.model.Property.class
org.owasp.validator.html.model.AntiSamyPattern.class
org.owasp.validator.html.model.Attribute.class
antisamy-slashdot.xml
AntiSamy_en_US.properties
antisamy-myspace.xml
|
依赖Jar: |
xml-apis-1.4.01.jar
/xml-apis/xml-apis/1.4.01
查看xml-apis所有版本文件
batik-css-1.12.jar
/org.apache.xmlgraphics/batik-css/1.12
查看batik-css所有版本文件
nekohtml-1.9.22.jar
/net.sourceforge.nekohtml/nekohtml/1.9.22
查看nekohtml所有版本文件
httpclient-4.5.12.jar
/org.apache.httpcomponents/httpclient/4.5.12
查看httpclient所有版本文件
xercesImpl-2.12.0.jar
/xerces/xercesImpl/2.12.0
查看xercesImpl所有版本文件
commons-codec-1.14.jar
/commons-codec/commons-codec/1.14
查看commons-codec所有版本文件
junit-4.13.jar
/junit/junit/4.13
查看junit所有版本文件
|