diff options
Diffstat (limited to 'sonar-colorizer/pom.xml')
-rw-r--r-- | sonar-colorizer/pom.xml | 12 |
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> |