diff options
author | Freddy Mallet <freddy.mallet@gmail.com> | 2011-04-23 00:46:05 +0200 |
---|---|---|
committer | Freddy Mallet <freddy.mallet@gmail.com> | 2011-04-23 00:46:05 +0200 |
commit | 84159b5d85a0b99790ba8ea90e463076d541ed5c (patch) | |
tree | c6f52c84eb62aa8e287b48d07765297daf61f9f2 /sonar-markdown/pom.xml | |
parent | b6f08e746d29a10f73c9e37ea828f093d68a89bd (diff) | |
download | sonarqube-84159b5d85a0b99790ba8ea90e463076d541ed5c.tar.gz sonarqube-84159b5d85a0b99790ba8ea90e463076d541ed5c.zip |
SONAR-2384 First implementation : Create a markdown dedicated to Sonar needs
Diffstat (limited to 'sonar-markdown/pom.xml')
-rw-r--r-- | sonar-markdown/pom.xml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sonar-markdown/pom.xml b/sonar-markdown/pom.xml new file mode 100644 index 00000000000..76e2a7c3aef --- /dev/null +++ b/sonar-markdown/pom.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar</artifactId> + <version>2.8-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + <artifactId>sonar-markdown</artifactId> + <name>Sonar :: Markdown</name> + + <dependencies> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-channel</artifactId> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + </dependencies> +</project>
\ No newline at end of file |