diff options
Diffstat (limited to 'sonar-duplications')
-rw-r--r-- | sonar-duplications/pom.xml | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/sonar-duplications/pom.xml b/sonar-duplications/pom.xml index 27b3acb2fd2..f62fca72ca1 100644 --- a/sonar-duplications/pom.xml +++ b/sonar-duplications/pom.xml @@ -33,6 +33,26 @@ <!-- unit tests --> <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> @@ -54,11 +74,6 @@ </exclusions> </dependency> <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>sonar-testing-harness</artifactId> - <scope>test</scope> - </dependency> - <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> |