diff options
Diffstat (limited to 'sonar-maven-plugin/pom.xml')
-rw-r--r-- | sonar-maven-plugin/pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sonar-maven-plugin/pom.xml b/sonar-maven-plugin/pom.xml index f4cdd7cd1a1..8b7e3a38d26 100644 --- a/sonar-maven-plugin/pom.xml +++ b/sonar-maven-plugin/pom.xml @@ -35,5 +35,22 @@ <artifactId>maven-project</artifactId> <scope>provided</scope> </dependency> + + <!-- Test --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.easytesting</groupId> + <artifactId>fest-assert</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> |