Maven Repository - POM file for Template pegdown 1.4.1 1.4.1

Summary

pegdown.

A Java 1.5+ library providing a clean and lightweight markdown processor.

Declaration

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

<dependency>
   <groupId>org.pegdown</groupId>
   <artifactId>pegdown</artifactId>
   <version>1.4.1</version>
</dependency>

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

License

Name:Apache 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Depends on

The pegdown-1.4.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
Web Frameworkjtidy r938
JTidy is a Java port of HTML Tidy, a HTML syntax checker and pretty printer. Like its non-Java cousin, JTidy can be used as a tool for cleaning up malformed and faulty HTML. In addition, JTidy provides a DOM interface to the document that is being processed, which effectively makes you able...
18

Packages

The following packages are defined in the pegdown-1.4.1.jar

org.pegdown
org.pegdown.ast
org.pegdown.plugins

POM File Source

Here is the content of the POM file.

<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.pegdown</groupId>
    <artifactId>pegdown</artifactId>
    <packaging>jar</packaging>
    <description>A Java 1.5+ library providing a clean and lightweight markdown processor</description>
    <url>http://pegdown.org</url>
    <version>1.4.1</version>
    <licenses>
        <license>
            <name>Apache 2</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <name>pegdown</name>
    <inceptionYear>2009</inceptionYear>
    <organization>
        <name>org.pegdown</name>
        <url>http://pegdown.org</url>
    </organization>
    <scm>
        <url>git@github.com:sirthias/pegdown.git</url>
        <connection>scm:git:git@github.com:sirthias/pegdown.git</connection>
    </scm>
    
    <dependencies>
        <dependency>
            <groupId>org.parboiled</groupId>
            <artifactId>parboiled-java</artifactId>
            <version>1.1.5</version>
        </dependency>
        <dependency>
            <groupId>net.sf.jtidy</groupId>
            <artifactId>jtidy</artifactId>
            <version>r938</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.specs2</groupId>
            <artifactId>specs2_2.9.3</artifactId>
            <version>1.12.4.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>