markdown-doclet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.raffael.markdown-doclet</groupId> <artifactId>markdown-doclet</artifactId> <version>1.4</version> </dependency>
<?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="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>ch.raffael.markdown-doclet</groupId> <artifactId>markdown-doclet</artifactId> <version>1.4</version> <name>Markdown Doclet</name> <description>A Doclet that allows the use of Markdown and PlantUML in JavaDoc comments.</description> <url>https://github.com/Abnaxos/markdown-doclet</url> <licenses> <license> <name>GPL 3.0</name> <url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>Abnaxos</id> <name>Raffael Herzog</name> <email>herzog@raffael.ch</email> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/Abnaxos/markdown-doclet.git</connection> <url>https://github.com/Abnaxos/markdown-doclet</url> </scm> <dependencies> <dependency> <groupId>org.pegdown</groupId> <artifactId>pegdown</artifactId> <version>1.6.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId> <version>8059</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.kohsuke</groupId> <artifactId>github-api</artifactId> <version>1.76</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp-urlconnection</artifactId> <version>2.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.4.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>1.0-groovy-2.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>org.codehaus.groovy</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>3.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.8.3</version> <scope>test</scope> </dependency> </dependencies> </project>