Download txtmark-0.13.jar file

Introduction

You can download txtmark-0.13.jar in this page.

License

The Apache Software License, Version 2.0

Type List

txtmark-0.13.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.rjeschke/txtmark/pom.properties
META-INF/maven/com.github.rjeschke/txtmark/pom.xml
com.github.rjeschke.txtmark.Block.class
com.github.rjeschke.txtmark.BlockEmitter.class
com.github.rjeschke.txtmark.BlockType.class
com.github.rjeschke.txtmark.Configuration.class
com.github.rjeschke.txtmark.Decorator.class
com.github.rjeschke.txtmark.DefaultDecorator.class
com.github.rjeschke.txtmark.Emitter.class
com.github.rjeschke.txtmark.HTML.class
com.github.rjeschke.txtmark.HTMLElement.class
com.github.rjeschke.txtmark.Line.class
com.github.rjeschke.txtmark.LineType.class
com.github.rjeschke.txtmark.LinkRef.class
com.github.rjeschke.txtmark.MarkToken.class
com.github.rjeschke.txtmark.Processor.class
com.github.rjeschke.txtmark.Run.class
com.github.rjeschke.txtmark.SpanEmitter.class
com.github.rjeschke.txtmark.Utils.class
com.github.rjeschke.txtmark.cmd.CmdArgument.class
com.github.rjeschke.txtmark.cmd.CmdLineParser.class
com.github.rjeschke.txtmark.cmd.CodeBlockEmitter.class
com.github.rjeschke.txtmark.cmd.HlUtils.class
com.github.rjeschke.txtmark.cmd.Run.class
com.github.rjeschke.txtmark.cmd.TxtmarkArguments.class

Pom

txtmark-0.13.pom file content.

<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.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <groupId>com.github.rjeschke</groupId>
  <artifactId>txtmark</artifactId>
  <version>0.13</version>
  <name>txtmark</name>
  <description>Markdown parser for the JVM</description>
  <url>https://github.com/rjeschke/txtmark</url>
  <packaging>jar</packaging>
  
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <scm>
    <connection>scm:git:git@github.com/rjeschke/txtmark.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/rjeschke/txtmark.git</developerConnection>
    <url>git@github.com/rjeschke/txtmark.git</url>
  </scm>

  <developers>
    <developer>
      <id>rjeschke</id>
      <name>Ren? Jeschke</name>
      <email>rene_jeschke@yahoo.de</email>
    </developer>
  </developers>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.8.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  
  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.1</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

</project>

POM Entry

<dependency>
   <groupId>com.github.rjeschke</groupId>
   <artifactId>txtmark</artifactId>
   <version>0.13</version>
</dependency>

Download

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



Download txtmark-0.13.jar file




PreviousNext

Related