diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-08-08 10:35:39 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-08-08 12:05:12 +0200 |
commit | a9611c345fd6ad51c37f9470b1b08fea0e062946 (patch) | |
tree | 98f9b9f4671e1ab3a8f84aa85e87dd4bf78196af /server | |
parent | 818278838e592c8124da76a780fd927145af74d8 (diff) | |
download | sonarqube-a9611c345fd6ad51c37f9470b1b08fea0e062946.tar.gz sonarqube-a9611c345fd6ad51c37f9470b1b08fea0e062946.zip |
fixed cyclic dependencies
Diffstat (limited to 'server')
-rw-r--r-- | server/pom.xml | 1 | ||||
-rw-r--r-- | server/sonar-process-test/pom.xml | 3 | ||||
-rw-r--r-- | server/sonar-process/pom.xml | 6 |
3 files changed, 3 insertions, 7 deletions
diff --git a/server/pom.xml b/server/pom.xml index 131d3efcbcd..27d1fc77c4f 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,6 +11,7 @@ <name>SonarQube :: Server :: Parent</name> <modules> + <module>sonar-process-test</module> <module>sonar-process</module> <module>sonar-search</module> <module>sonar-server</module> diff --git a/server/sonar-process-test/pom.xml b/server/sonar-process-test/pom.xml index 94c2090e448..c5b4876e700 100644 --- a/server/sonar-process-test/pom.xml +++ b/server/sonar-process-test/pom.xml @@ -20,6 +20,7 @@ <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-process</artifactId> <version>${project.version}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> @@ -85,7 +86,7 @@ <goal>shade</goal> </goals> <configuration> - <keepDependenciesWithProvidedScope>false</keepDependenciesWithProvidedScope> + <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> <minimizeJar>true</minimizeJar> </configuration> </execution> diff --git a/server/sonar-process/pom.xml b/server/sonar-process/pom.xml index d5ee17653b5..6c941681ba3 100644 --- a/server/sonar-process/pom.xml +++ b/server/sonar-process/pom.xml @@ -68,12 +68,6 @@ <artifactId>guava</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-process-test</artifactId> - <version>${project.version}</version> - <scope>test</scope> - </dependency> </dependencies> <build> <plugins> |