diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-11-16 22:45:40 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-11-19 08:27:08 +0100 |
commit | e08827e2b700cd4c76574316a54f8c116e64ccb3 (patch) | |
tree | 4f2d77c5a5b4ec4a95d3b6c4cf3d1ee51909a94e /server/sonar-server/pom.xml | |
parent | ecf3d2f0e87f0d66d2333db4c65d549ba77ce578 (diff) | |
download | sonarqube-e08827e2b700cd4c76574316a54f8c116e64ccb3.tar.gz sonarqube-e08827e2b700cd4c76574316a54f8c116e64ccb3.zip |
Refactor the way to declare ES indices.
- BaseIndex has too many responsibilities
- SearchClient must not override TransportClient, else it can't be easily used in tests
Diffstat (limited to 'server/sonar-server/pom.xml')
-rw-r--r-- | server/sonar-server/pom.xml | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index e55f9054241..4c826b8542f 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -187,23 +187,8 @@ <scope>test</scope> </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.easytesting</groupId> - <artifactId>fest-assert</artifactId> - <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> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-testing-harness</artifactId> <scope>test</scope> </dependency> <dependency> |