aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-colorizer/pom.xml
diff options
context:
space:
mode:
authorEvgeny Mandrikov <mandrikov@gmail.com>2012-07-09 14:18:35 +0600
committerEvgeny Mandrikov <mandrikov@gmail.com>2012-07-09 14:40:25 +0600
commit5bd94a7ef0c35450d08663c86f715d1fb1ae6b05 (patch)
tree1b9830fe3b1b7fae32159c6b1c8fe2b135042a2f /sonar-colorizer/pom.xml
parent790ab2ce24482a2690d40c999e32c8e69dfeade9 (diff)
downloadsonarqube-5bd94a7ef0c35450d08663c86f715d1fb1ae6b05.tar.gz
sonarqube-5bd94a7ef0c35450d08663c86f715d1fb1ae6b05.zip
SONAR-3531 Allow to use MultilinesDocTokenizer for html comments
Diffstat (limited to 'sonar-colorizer/pom.xml')
-rw-r--r--sonar-colorizer/pom.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/sonar-colorizer/pom.xml b/sonar-colorizer/pom.xml
index dc3960e8a53..13aebf419fc 100644
--- a/sonar-colorizer/pom.xml
+++ b/sonar-colorizer/pom.xml
@@ -1,14 +1,16 @@
<?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>3.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
+
<artifactId>sonar-colorizer</artifactId>
- <packaging>jar</packaging>
+
<name>Sonar :: Code Colorizer</name>
<description>Code syntax highlighter</description>
@@ -31,5 +33,11 @@
<artifactId>hamcrest-all</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.easytesting</groupId>
+ <artifactId>fest-assert</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
-</project> \ No newline at end of file
+
+</project>