Maven Repository - POM file for Web Framework htmlparser 2.1 2.1

Summary

HTML Parser Jar.

HTML Parser is the high level syntactical analyzer..

Declaration

Here is the list of declaration for htmlparser. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.htmlparser</groupId>
   <artifactId>htmlparser</artifactId>
   <version>2.1</version>
</dependency>

If you think this Maven repository POM file listing for htmlparser is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The htmlparser-2.1 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1966




Depended by

The following table lists the most popular artifacts which are depending on htmlparser-2.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Testingfitnesse 20140201
The fully integrated standalone wiki, and acceptance testing framework.
6
Testingfitnesse 20121220
The fully integrated standalone wiki, and acceptance testing framework.
13

Plugin

The following plugins are used in the htmlparser-2.1.jar

  1. maven-jar-plugin
  2. maven-surefire-plugin

Packages

The following packages are defined in the htmlparser-2.1.jar

org.htmlparser
org.htmlparser.beans
org.htmlparser.filters
org.htmlparser.http
org.htmlparser.sax
org.htmlparser.scanners
org.htmlparser.tags
org.htmlparser.util
org.htmlparser.visitors




POM File Source

Here is the content of the POM file.

<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>
  <artifactId>htmlparser</artifactId>
  <name>HTML Parser Jar</name>
  <description>HTML Parser is the high level syntactical analyzer.</description>
  <url>http://htmlparser.org</url>
  <parent>
    <artifactId>HTMLParserProject</artifactId>
    <groupId>org.htmlparser</groupId>
    <version>2.1</version>
  </parent>
  <build>
    <finalName>${project.artifactId}</finalName>    
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>        
        <configuration>
          <archive>
            <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
            <manifest>
              <mainClass>org.htmlparser.Parser</mainClass>
              <addClasspath>true</addClasspath>
            </manifest>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>sax</groupId>
      <artifactId>sax</artifactId>
      <version>2.0.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.htmlparser</groupId>
      <artifactId>htmllexer</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
</project>