| 组织ID: |
net.sourceforge.htmlcleaner |
| 项目ID: |
htmlcleaner |
| 版本: |
2.19 |
| 最后修改时间: |
2018-08-08 22:31:34 |
| 包类型: |
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/ |
| 大小: |
155.52KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.sourceforge.htmlcleaner</groupId>
<artifactId>htmlcleaner</artifactId>
<version>2.19</version>
</dependency>
|
| Gradle引入代码: |
net.sourceforge.htmlcleaner:htmlcleaner:2.19
|
| 下载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>bundle</packaging>
<version>2.19</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, Pat Moore and Scott Wilson
YEAR = 2006-2015
</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>scottbw@apache.org</email>
</developer>
</developers>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<scm>
<url>https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.19</url>
<connection>scm:svn:https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.19</connection>
<developerConnection>scm:svn:https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.19</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>jdom2</artifactId>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.0.1</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>org.htmlcleaner.*</Export-Package>
<Main-Class>org.htmlcleaner.CommandLine</Main-Class>
</instructions>
</configuration>
</plugin>
<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>3.0</version>
<configuration>
<!-- 1.5 to allow usage on android -->
<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.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<!-- only required when scott is doing the release! -->
<configuration>
<keyname>11D7C9D5</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>
</extensions>
</build>
<!-- For publishing on Sonatype -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<!-- https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-6.CentralSyncRequirement
they don't want repositories listed in poms
<pluginRepositories>
<pluginRepository>
<id>oss-sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
-->
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/net.sourceforge.htmlcleaner/htmlcleaner/pom.properties
META-INF/maven/net.sourceforge.htmlcleaner/htmlcleaner/pom.xml
org.htmlcleaner.AttributeTransformation.class
org.htmlcleaner.AttributeTransformationPatternImpl.class
org.htmlcleaner.BaseToken.class
org.htmlcleaner.BaseTokenImpl.class
org.htmlcleaner.BelongsTo.class
org.htmlcleaner.BrowserCompactXmlSerializer.class
org.htmlcleaner.CData.class
org.htmlcleaner.CleanTimeValues.class
org.htmlcleaner.CleanerProperties.class
org.htmlcleaner.CleanerTransformations.class
org.htmlcleaner.CloseTag.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.ContentType.class
org.htmlcleaner.DefaultTagProvider.class
org.htmlcleaner.Display.class
org.htmlcleaner.DoctypeToken.class
org.htmlcleaner.DomSerializer.class
org.htmlcleaner.EndTagToken.class
org.htmlcleaner.Html4TagProvider.class
org.htmlcleaner.Html5TagProvider.class
org.htmlcleaner.HtmlCleaner$1.class
org.htmlcleaner.HtmlCleaner$ChildBreaks.class
org.htmlcleaner.HtmlCleaner$NestingState.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.MathMLTagProvider.class
org.htmlcleaner.OptionalOutput.class
org.htmlcleaner.PrettyHtmlSerializer.class
org.htmlcleaner.PrettyXmlSerializer.class
org.htmlcleaner.ProxyTagNode.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.SpecialEntities$1.class
org.htmlcleaner.SpecialEntities.class
org.htmlcleaner.SpecialEntity.class
org.htmlcleaner.TagInfo$1.class
org.htmlcleaner.TagInfo.class
org.htmlcleaner.TagNode.class
org.htmlcleaner.TagNodeVisitor.class
org.htmlcleaner.TagToken.class
org.htmlcleaner.TagTransformation.class
org.htmlcleaner.Utils.class
org.htmlcleaner.XPather.class
org.htmlcleaner.XPatherException.class
org.htmlcleaner.XmlSerializer.class
org.htmlcleaner.audit.ErrorType.class
org.htmlcleaner.audit.HtmlModificationListener.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
jdom2-2.0.5.jar
/org.jdom/jdom2/2.0.5
查看jdom2所有版本文件
ant-1.9.0.jar
/org.apache.ant/ant/1.9.0
查看ant所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|