| 组织ID: |
net.sourceforge.htmlcleaner |
| 项目ID: |
htmlcleaner |
| 版本: |
2.2.1 |
| 最后修改时间: |
2018-07-30 14:15:29 |
| 包类型: |
jar |
| 标题: |
HtmlCleaner |
| 描述: |
HtmlCleaner is an HTML parser written in Java. It transforms dirty HTML to well-formed XML following
the same rules that most web-browsers use.
|
| 相关URL: |
http://htmlcleaner.sourceforge.net/ |
| 大小: |
105.94KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId>
<version>2.2.1</version>
</dependency>
|
| Gradle引入代码: |
net.sourceforge.htmlcleaner:htmlcleaner:2.2.1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId>
<packaging>jar</packaging>
<version>2.2.1</version>
<name>HtmlCleaner</name>
<description>
HtmlCleaner is an HTML parser written in Java. It transforms dirty HTML to well-formed XML following
the same rules that most web-browsers use.
</description>
<url>http://htmlcleaner.sourceforge.net/</url>
<inceptionYear>2006</inceptionYear>
<licenses>
<license>
<name>BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<comments>
OWNER = Vladimir Nikic
YEAR = 2006-2013
</comments>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Vladimir Nikic</name>
<id>vnikic</id>
<roles>
<role>Project Admin</role>
<role>Developer</role>
</roles>
<timezone>1</timezone>
<email>vnikic@users.sourceforge.net</email>
</developer>
<developer>
<name>Patrick Moore</name>
<id>patmoore</id>
<roles>
<role>Project Admin</role>
<role>Developer</role>
</roles>
<timezone>-8</timezone>
<email>patmoore@farreach.es</email>
</developer>
<developer>
<name>Scott Wilson</name>
<id>scottbw</id>
<roles>
<role>Project Admin</role>
<role>Developer</role>
</roles>
<timezone>1</timezone>
<email>scott.bradley.wilson@gmail.com</email>
</developer>
</developers>
<scm>
<url>http://htmlcleaner.svn.sourceforge.net/</url>
<connection>scm:svn:http://htmlcleaner.svn.sourceforge.net/svnroot/htmlcleaner/trunk</connection>
<developerConnection>scm:svn:https://htmlcleaner.svn.sourceforge.net/svnroot/htmlcleaner/trunk</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<wagon-build>1.0-beta-7</wagon-build>
</properties>
<dependencies>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1.2</version>
<exclusions>
<!-- 1.1.2 refers to unreleased jaxen 1.1.3 -->
<exclusion>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</exclusion>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11-beta-1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<uniqueVersion>false</uniqueVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
<configuration>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>config/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>98654FBE</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>${wagon-build}</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>${wagon-build}</version>
</extension>
<!-- sftp patmoore,amplafi-flow@web.sourceforge.net <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-sftp</artifactId> <version>${wagon-build}</version> </extension> -->
</extensions>
</build>
<pluginRepositories>
<pluginRepository>
<id>oss-sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.htmlcleaner.BaseToken.class
org.htmlcleaner.BrowserCompactXmlSerializer.class
org.htmlcleaner.CleanerProperties.class
org.htmlcleaner.CleanerTransformations.class
org.htmlcleaner.CommandLine.class
org.htmlcleaner.CommentNode.class
org.htmlcleaner.CompactHtmlSerializer.class
org.htmlcleaner.CompactXmlSerializer.class
org.htmlcleaner.ConfigFileTagProvider$ConfigParser.class
org.htmlcleaner.ConfigFileTagProvider.class
org.htmlcleaner.ContentNode.class
org.htmlcleaner.DefaultTagProvider.class
org.htmlcleaner.DoctypeToken.class
org.htmlcleaner.DomSerializer.class
org.htmlcleaner.EndTagToken.class
org.htmlcleaner.HtmlCleaner$1.class
org.htmlcleaner.HtmlCleaner$CleanTimeValues.class
org.htmlcleaner.HtmlCleaner$OpenTags.class
org.htmlcleaner.HtmlCleaner$TagPos.class
org.htmlcleaner.HtmlCleaner.class
org.htmlcleaner.HtmlCleanerException.class
org.htmlcleaner.HtmlCleanerForAnt.class
org.htmlcleaner.HtmlNode.class
org.htmlcleaner.HtmlSerializer.class
org.htmlcleaner.HtmlTokenizer.class
org.htmlcleaner.ITagInfoProvider.class
org.htmlcleaner.JDomSerializer.class
org.htmlcleaner.PrettyHtmlSerializer.class
org.htmlcleaner.PrettyXmlSerializer.class
org.htmlcleaner.Serializer$1.class
org.htmlcleaner.Serializer$HeadlessTagNode.class
org.htmlcleaner.Serializer.class
org.htmlcleaner.SimpleHtmlSerializer.class
org.htmlcleaner.SimpleXmlSerializer.class
org.htmlcleaner.SpecialEntity.class
org.htmlcleaner.TagInfo.class
org.htmlcleaner.TagNode$ITagNodeCondition.class
org.htmlcleaner.TagNode$TagAllCondition.class
org.htmlcleaner.TagNode$TagNodeAttExistsCondition.class
org.htmlcleaner.TagNode$TagNodeAttValueCondition.class
org.htmlcleaner.TagNode$TagNodeNameCondition.class
org.htmlcleaner.TagNode.class
org.htmlcleaner.TagNodeVisitor.class
org.htmlcleaner.TagToken.class
org.htmlcleaner.TagTransformation.class
org.htmlcleaner.Utils.class
org.htmlcleaner.XmlSerializer.class
org.htmlcleaner.XPather.class
org.htmlcleaner.XPatherException.class
META-INF/maven/net.sourceforge.htmlcleaner/htmlcleaner/pom.xml
META-INF/maven/net.sourceforge.htmlcleaner/htmlcleaner/pom.properties
|
| 依赖Jar: |
jdom-1.1.2.jar
/org.jdom/jdom/1.1.2
查看jdom所有版本文件
ant-1.8.4.jar
/org.apache.ant/ant/1.8.4
查看ant所有版本文件
junit-4.11-beta-1.jar
/junit/junit/4.11-beta-1
查看junit所有版本文件
|