diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-07-14 18:52:50 +0400 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-07-14 20:25:31 +0400 |
commit | f8048e6b80c360e2c2486dae47f6dfd6a47ea895 (patch) | |
tree | d5ba6ee74953ab67507162c2ec51bac648297e52 | |
parent | 8d542803129dc572828a4a12174c5c4d2c1c81c8 (diff) | |
download | sonarqube-f8048e6b80c360e2c2486dae47f6dfd6a47ea895.tar.gz sonarqube-f8048e6b80c360e2c2486dae47f6dfd6a47ea895.zip |
Samples: sonar-plugin-api must be declared with scope provided
-rw-r--r-- | samples/checkstyle-extensions-plugin/pom.xml | 1 | ||||
-rw-r--r-- | samples/gwt-plugin/pom.xml | 2 | ||||
-rw-r--r-- | samples/pmd-extensions-plugin/pom.xml | 1 | ||||
-rw-r--r-- | samples/standard-plugin/pom.xml | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/samples/checkstyle-extensions-plugin/pom.xml b/samples/checkstyle-extensions-plugin/pom.xml index 9f982f9fde7..74801b1c481 100644 --- a/samples/checkstyle-extensions-plugin/pom.xml +++ b/samples/checkstyle-extensions-plugin/pom.xml @@ -19,6 +19,7 @@ <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.buildVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>checkstyle</groupId> diff --git a/samples/gwt-plugin/pom.xml b/samples/gwt-plugin/pom.xml index abecb620c56..5882e577e84 100644 --- a/samples/gwt-plugin/pom.xml +++ b/samples/gwt-plugin/pom.xml @@ -14,12 +14,12 @@ <sonar.buildVersion>2.8</sonar.buildVersion> </properties> - <dependencies> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.buildVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> diff --git a/samples/pmd-extensions-plugin/pom.xml b/samples/pmd-extensions-plugin/pom.xml index 80641f168c4..c773e7dfd92 100644 --- a/samples/pmd-extensions-plugin/pom.xml +++ b/samples/pmd-extensions-plugin/pom.xml @@ -19,6 +19,7 @@ <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.buildVersion}</version> + <scope>provided</scope> </dependency> <dependency> <groupId>pmd</groupId> diff --git a/samples/standard-plugin/pom.xml b/samples/standard-plugin/pom.xml index d1692b5dc57..65cf9311728 100644 --- a/samples/standard-plugin/pom.xml +++ b/samples/standard-plugin/pom.xml @@ -19,6 +19,7 @@ <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <version>${sonar.buildVersion}</version> + <scope>provided</scope> </dependency> <!-- unit tests --> |