diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-11-12 10:15:08 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-11-12 10:15:08 +0100 |
commit | 65a36f7842e6e4248c874b0b2e5f2bdae5ef865f (patch) | |
tree | f5e787c25d0106b26f66a77543c3419409971938 /plugins | |
parent | fec91dbfd31b9535146cef1e1d47bb4601e43cf5 (diff) | |
download | sonarqube-65a36f7842e6e4248c874b0b2e5f2bdae5ef865f.tar.gz sonarqube-65a36f7842e6e4248c874b0b2e5f2bdae5ef865f.zip |
SONAR-3945 fix dependency on sonar-gwt-api 3.3.1
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-gwt/pom.xml | 7 | ||||
-rw-r--r-- | plugins/sonar-core-plugin/pom.xml | 9 | ||||
-rw-r--r-- | plugins/sonar-design-plugin/pom.xml | 7 |
3 files changed, 22 insertions, 1 deletions
diff --git a/plugins/sonar-core-gwt/pom.xml b/plugins/sonar-core-gwt/pom.xml index f308077ebbb..6be5d4b5186 100644 --- a/plugins/sonar-core-gwt/pom.xml +++ b/plugins/sonar-core-gwt/pom.xml @@ -20,6 +20,13 @@ <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-gwt-api</artifactId> + <version>3.3.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-ws-client</artifactId> + <version>3.3.1</version> <scope>provided</scope> </dependency> <dependency> diff --git a/plugins/sonar-core-plugin/pom.xml b/plugins/sonar-core-plugin/pom.xml index f3d57cfbb00..1354caef197 100644 --- a/plugins/sonar-core-plugin/pom.xml +++ b/plugins/sonar-core-plugin/pom.xml @@ -58,10 +58,17 @@ <scope>test</scope> </dependency> - <!-- only for animal-sniffer (see profile check-java-api --> + <!-- Required for animal-sniffer --> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-gwt-api</artifactId> + <version>3.3.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-ws-client</artifactId> + <version>3.3.1</version> <scope>provided</scope> </dependency> <dependency> diff --git a/plugins/sonar-design-plugin/pom.xml b/plugins/sonar-design-plugin/pom.xml index bbdab14c1e5..eb98293e7a8 100644 --- a/plugins/sonar-design-plugin/pom.xml +++ b/plugins/sonar-design-plugin/pom.xml @@ -31,6 +31,13 @@ <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-gwt-api</artifactId> + <version>3.3.1</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-ws-client</artifactId> + <version>3.3.1</version> <scope>provided</scope> </dependency> <dependency> |