My favorites | Sign in
Logo
                
Search
for
Updated May 15, 2009 by alex.coles
Labels: Featured
Maven  
Getting MarkdownJ from a Maven Repository

Maven 2

Currently, scala-tools.org are kindly hosting MarkdownJ in their Maven (release) repository.

Their release repository is available here: http://scala-tools.org/repo-releases/

You can add a repository to your pom.xml as follows:

<repositories>
    <repository>
        <id>scala-tools</id>
        <url>http://scala-tools.org/repo-releases</url>
    </repository>
</repositories>

The groupId is org.markdownj and artifactId is markdownj. You can add the dependency to your pom.xml as follows:

<dependency>
  <groupId>org.markdownj</groupId>
  <artifactId>markdownj</artifactId>
  <version>0.3.0-1.0.2b4</version>
</dependency>

We are not (yet) providing snapshots, but hope to do so in the near future: http://scala-tools.org/repo-snapshots/


Sign in to add a comment
Hosted by Google Code