Maven Repository - POM file for Web Framework jericho-html 3.1 3.1

Summary

Jericho HTML Parser.

Jericho HTML Parser is a java library allowing analysis and manipulation of parts of an HTML document, including server-side tags, while reproducing verbatim any unrecognised or invalid HTML. It also provides high-level HTML form manipulation functions..

Declaration

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

<dependency>
   <groupId>net.htmlparser.jericho</groupId>
   <artifactId>jericho-html</artifactId>
   <version>3.1</version>
</dependency>

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





License

Name:GNU Lesser General Public License (LGPL)
URL: http://www.gnu.org/licenses/lgpl.txtName:Eclipse Public License (EPL)
URL: http://www.eclipse.org/legal/epl-v10.html.

Depends on

The jericho-html-3.1 has 3 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
Logslf4j-api 1.5.6
The slf4j API
64
Logcommons-logging-api 1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
88

Packages

The following packages are defined in the jericho-html-3.1.jar

net.htmlparser.jericho
net.htmlparser.jericho.nodoc

POM File Source

Here is the content of the POM file.

<?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.htmlparser.jericho</groupId>
  <artifactId>jericho-html</artifactId>
  <version>3.1</version>
  <packaging>jar</packaging>
  <name>Jericho HTML Parser</name>
  <description>Jericho HTML Parser is a java library allowing analysis and manipulation of parts of an HTML document, including server-side tags, while reproducing verbatim any unrecognised or invalid HTML. It also provides high-level HTML form manipulation functions.</description>
  <inceptionYear>2001</inceptionYear>
  <url>http://jericho.htmlparser.net</url>
  <licenses>
    <license>
      <name>GNU Lesser General Public License (LGPL)</name>
      <url>http://www.gnu.org/licenses/lgpl.txt</url> 
    </license>
    <license>
      <name>Eclipse Public License (EPL)</name>
      <url>http://www.eclipse.org/legal/epl-v10.html</url> 
    </license>
  </licenses>
  <properties>
    <maven.compiler.debug>false</maven.compiler.debug>
    <maven.compiler.source>1.5</maven.compiler.source>
    <maven.compiler.target>1.5</maven.compiler.target>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.5.6</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging-api</artifactId>
      <version>1.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
      <optional>true</optional>
    </dependency>
  </dependencies>
  <scm>
    <connection>?</connection>
  </scm>
  
</project>