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 /sonar-batch/pom.xml | |
parent | 7d272075f919cffb2a5806f20fe027dea1cb4b28 (diff) | |
download | sonarqube-3e6f3ed80c0b631d794bcb2e744f3517ad0db989.tar.gz sonarqube-3e6f3ed80c0b631d794bcb2e744f3517ad0db989.zip |
Cut many dependencies on sonar-testing-harness
Diffstat (limited to 'sonar-batch/pom.xml')
-rw-r--r-- | sonar-batch/pom.xml | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/sonar-batch/pom.xml b/sonar-batch/pom.xml index 276564bb9cf..f8e86b8e539 100644 --- a/sonar-batch/pom.xml +++ b/sonar-batch/pom.xml @@ -108,6 +108,32 @@ <!-- 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>net.javacrumbs.json-unit</groupId> + <artifactId>json-unit-assertj</artifactId> + <version>0.0.15</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>${project.groupId}</groupId> <artifactId>sonar-plugin-api</artifactId> <type>test-jar</type> @@ -120,11 +146,6 @@ <scope>test</scope> </dependency> <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>sonar-testing-harness</artifactId> - <scope>test</scope> - </dependency> - <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>test</scope> |