diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-08-25 11:54:26 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-09-13 15:50:49 +0200 |
commit | 80269a5d22553335f22f3e8a8a5840724fb154f9 (patch) | |
tree | df2a88bb4ae61251040499ec77f2d217246512a1 /server/sonar-ce/pom.xml | |
parent | 904cd8b327790c31d1abe0bceb0007015e74dfdf (diff) | |
download | sonarqube-80269a5d22553335f22f3e8a8a5840724fb154f9.tar.gz sonarqube-80269a5d22553335f22f3e8a8a5840724fb154f9.zip |
SONAR-9741 move shared cluster related classes to sonar-cluster
Diffstat (limited to 'server/sonar-ce/pom.xml')
-rw-r--r-- | server/sonar-ce/pom.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/server/sonar-ce/pom.xml b/server/sonar-ce/pom.xml index 007270e7793..03472a98f01 100644 --- a/server/sonar-ce/pom.xml +++ b/server/sonar-ce/pom.xml @@ -12,11 +12,16 @@ <dependencies> <dependency> - <groupId>org.sonarsource.sonarqube</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sonar-server</artifactId> <scope>provided</scope> </dependency> <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>sonar-cluster</artifactId> + <scope>provided</scope> + </dependency> + <dependency> <groupId>org.nanohttpd</groupId> <artifactId>nanohttpd</artifactId> </dependency> @@ -30,10 +35,6 @@ <artifactId>jsr305</artifactId> <scope>provided</scope> </dependency> - <dependency> - <groupId>com.hazelcast</groupId> - <artifactId>hazelcast-client</artifactId> - </dependency> <!-- unit tests --> <dependency> |