Download markdownj-core-0.4.jar file

Introduction

You can download markdownj-core-0.4.jar in this page.

License

Open Source License

Type List

markdownj-core-0.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.markdownj/markdownj-core/pom.properties
META-INF/maven/org.markdownj/markdownj-core/pom.xml
com.petebevin.markdown.MarkdownProcessor.class
com.petebevin.markdown.package-info.class
org.markdownj.CharacterProtector.class
org.markdownj.HTMLDecoder.class
org.markdownj.HTMLToken.class
org.markdownj.LinkDefinition.class
org.markdownj.MarkdownProcessor.class
org.markdownj.Replacement.class
org.markdownj.TextEditor.class

Pom

markdownj-core-0.4.pom file content.

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2008, Alex Coles.

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright notice,
  this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.

* Neither the name "Markdown" nor the names of its contributors may
  be used to endorse or promote products derived from this software
  without specific prior written permission.

This software is provided by the copyright holders and contributors "as
is" and any express or implied warranties, including, but not limited
to, the implied warranties of merchantability and fitness for a
particular purpose are disclaimed. In no event shall the copyright owner
or contributors be liable for any direct, indirect, incidental, special,
exemplary, or consequential damages (including, but not limited to,
procurement of substitute goods or services; loss of use, data, or
profits; or business interruption) however caused and on any theory of
liability, whether in contract, strict liability, or tort (including
negligence or otherwise) arising in any way out of the use of this
software, even if advised of the possibility of such damage.
-->
<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>

    <parent>
        <groupId>org.markdownj</groupId>
        <artifactId>markdownj</artifactId>
        <version>0.4</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <packaging>jar</packaging>

    <artifactId>markdownj-core</artifactId>
    <name>MarkdownJ Core</name>
    <description>Core functionality provided by MarkdownJ.</description>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.16</version>
                <configuration>
                    <includes>
                        <include>**/*.java</include>
                    </includes>
                    <excludes>
                        <exclude>**/TestResultPair.java</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
                <configuration />
            </plugin>
        </plugins>
    </reporting>

    <properties>
        <site.directory>${basedir}/../</site.directory>
    </properties>

</project>

POM Entry

<dependency>
   <groupId>org.markdownj</groupId>
   <artifactId>markdownj-core</artifactId>
   <version>0.4</version>
</dependency>

Download

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



Download markdownj-core-0.4.jar file




PreviousNext

Related