diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-01-24 00:55:25 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-01-24 00:55:25 +0100 |
commit | d65773c6bf2ac93ae6081297fa130eca85fe9e91 (patch) | |
tree | 24eaabcd9a069633fab38ffa4a4ab5d9a037a279 /sonar-testing-harness/pom.xml | |
parent | 078cff8c82b9b3f4bb31f6c014d0bb96f7a1b46a (diff) | |
download | sonarqube-d65773c6bf2ac93ae6081297fa130eca85fe9e91.tar.gz sonarqube-d65773c6bf2ac93ae6081297fa130eca85fe9e91.zip |
SONAR-5010 improve testability of web service and fix media type of response
Diffstat (limited to 'sonar-testing-harness/pom.xml')
-rw-r--r-- | sonar-testing-harness/pom.xml | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/sonar-testing-harness/pom.xml b/sonar-testing-harness/pom.xml index 777d2790c72..e32a3a72f43 100644 --- a/sonar-testing-harness/pom.xml +++ b/sonar-testing-harness/pom.xml @@ -13,42 +13,46 @@ <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.easytesting</groupId> + <artifactId>fest-assert</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </dependency> <dependency> - <groupId>org.easytesting</groupId> - <artifactId>fest-assert</artifactId> + <groupId>org.skyscreamer</groupId> + <artifactId>jsonassert</artifactId> </dependency> <dependency> - <groupId>xmlunit</groupId> - <artifactId>xmlunit</artifactId> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> </dependency> <dependency> + <!-- used only for org.sonar.test.channel classes --> <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-plugin-api</artifactId> + <artifactId>sonar-channel</artifactId> <version>${project.version}</version> + <optional>true</optional> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${project.version}</version> - <type>test-jar</type> </dependency> <dependency> - <!-- used only for org.sonar.test.channel classes --> <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-channel</artifactId> + <artifactId>sonar-plugin-api</artifactId> <version>${project.version}</version> - <optional>true</optional> + <type>test-jar</type> </dependency> <dependency> - <groupId>com.google.code.findbugs</groupId> - <artifactId>jsr305</artifactId> + <groupId>xmlunit</groupId> + <artifactId>xmlunit</artifactId> </dependency> </dependencies> </project> |