diff options
Diffstat (limited to 'sonar-duplications/pom.xml')
-rw-r--r-- | sonar-duplications/pom.xml | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/sonar-duplications/pom.xml b/sonar-duplications/pom.xml index f2d5d8ce047..2748a09a385 100644 --- a/sonar-duplications/pom.xml +++ b/sonar-duplications/pom.xml @@ -12,11 +12,16 @@ <dependencies> <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - <scope>test</scope> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-channel</artifactId> </dependency> <dependency> + <groupId>com.google.collections</groupId> + <artifactId>google-collections</artifactId> + <version>1.0</version> + </dependency> + + <dependency> <groupId>pmd</groupId> <artifactId>pmd</artifactId> <version>4.2.5</version> @@ -32,5 +37,15 @@ <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <scope>test</scope> + </dependency> </dependencies> -</project>
\ No newline at end of file +</project> |