| 组织ID: |
net.sourceforge.htmlcleaner |
| 项目ID: |
htmlcleaner |
| 版本: |
2.2 |
| 最后修改时间: |
2018-07-28 08:44:05 |
| 包类型: |
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.42KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId>
<version>2.2</version>
</dependency>
|
| Gradle引入代码: |
net.sourceforge.htmlcleaner:htmlcleaner:2.2
|
| 下载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">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId>
<packaging>jar</packaging>
<version>2.2</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-2010
</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>
</developers>
<scm>
<url>http://htmlcleaner.svn.sourceforge.net/</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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>
<configuration>
<archive>
<manifestFile>config/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
</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>
</execution>
</executions>
</plugin>
</plugins>
</build>
</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.jar
/org.jdom/jdom/1.1
查看jdom所有版本文件
ant-1.7.0.jar
/org.apache.ant/ant/1.7.0
查看ant所有版本文件
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
|