Download htmlcleaner-2.10.jar file

Introduction

You can download htmlcleaner-2.10.jar in this page.

License

BSD License

Type List

htmlcleaner-2.10.jar file has the following types.

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.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.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.OptionalOutput.class
org.htmlcleaner.PrettyHtmlSerializer.class
org.htmlcleaner.PrettyXmlSerializer.class
org.htmlcleaner.ProxyTagNode.class
org.htmlcleaner.Serializer.class
org.htmlcleaner.SimpleHtmlSerializer.class
org.htmlcleaner.SimpleXmlSerializer.class
org.htmlcleaner.SpecialEntities.class
org.htmlcleaner.SpecialEntity.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
org.htmlcleaner.audit.HtmlModificationListenerLogger.class
org.htmlcleaner.conditional.ITagNodeCondition.class
org.htmlcleaner.conditional.TagAllCondition.class
org.htmlcleaner.conditional.TagNodeAttExistsCondition.class
org.htmlcleaner.conditional.TagNodeAttNameValueRegexCondition.class
org.htmlcleaner.conditional.TagNodeAttValueCondition.class
org.htmlcleaner.conditional.TagNodeAutoGeneratedCondition.class
org.htmlcleaner.conditional.TagNodeEmptyContentCondition.class
org.htmlcleaner.conditional.TagNodeInsignificantBrCondition.class
org.htmlcleaner.conditional.TagNodeNameCondition.class

Pom

htmlcleaner-2.10.pom file content.

<?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.10</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-2014
            </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.10</url>
        <connection>scm:svn:https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.10</connection>
        <developerConnection>scm:svn:https://svn.code.sf.net/p/htmlcleaner/code/tags/htmlcleaner-2.10</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.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>
                    </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>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>
        </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>

POM Entry

<dependency>
   <groupId>net.sourceforge.htmlcleaner</groupId>
   <artifactId>htmlcleaner</artifactId>
   <version>2.10</version>
</dependency>

Download

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



Download htmlcleaner-2.10.jar file




PreviousNext

Related