diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2016-01-19 11:14:50 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2016-01-19 14:45:02 +0100 |
commit | 3e6f3ed80c0b631d794bcb2e744f3517ad0db989 (patch) | |
tree | 9b8990e103de8c8e60fac04840f7f06fdd50898f /plugins | |
parent | 7d272075f919cffb2a5806f20fe027dea1cb4b28 (diff) | |
download | sonarqube-3e6f3ed80c0b631d794bcb2e744f3517ad0db989.tar.gz sonarqube-3e6f3ed80c0b631d794bcb2e744f3517ad0db989.zip |
Cut many dependencies on sonar-testing-harness
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-xoo-plugin/pom.xml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/plugins/sonar-xoo-plugin/pom.xml b/plugins/sonar-xoo-plugin/pom.xml index 79bb2d61254..26d2c84fc7c 100644 --- a/plugins/sonar-xoo-plugin/pom.xml +++ b/plugins/sonar-xoo-plugin/pom.xml @@ -46,8 +46,18 @@ <!-- unit testing --> <dependency> - <groupId>org.sonarsource.sonarqube</groupId> - <artifactId>sonar-testing-harness</artifactId> + <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.mockito</groupId> + <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> |