aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-clover-plugin/pom.xml
diff options
context:
space:
mode:
authorGodin <mandrikov@gmail.com>2010-12-03 14:57:36 +0000
committerGodin <mandrikov@gmail.com>2010-12-03 14:57:36 +0000
commit58756ad8e3e3cde1da77120b553bb22fbc0b79fa (patch)
tree363b80b41d9fb6fb5d3b8f929b8d62810a2e9197 /plugins/sonar-clover-plugin/pom.xml
parent555287b5a0fd21e19f26afa7b9f683a244c39dad (diff)
downloadsonarqube-58756ad8e3e3cde1da77120b553bb22fbc0b79fa.tar.gz
sonarqube-58756ad8e3e3cde1da77120b553bb22fbc0b79fa.zip
SONAR-2011: Remove dependency on maven-common-artifact-filters from sonar-plugin-api
Diffstat (limited to 'plugins/sonar-clover-plugin/pom.xml')
-rw-r--r--plugins/sonar-clover-plugin/pom.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/sonar-clover-plugin/pom.xml b/plugins/sonar-clover-plugin/pom.xml
index d33033855dc..6a360c06525 100644
--- a/plugins/sonar-clover-plugin/pom.xml
+++ b/plugins/sonar-clover-plugin/pom.xml
@@ -52,10 +52,20 @@
<artifactId>sonar-plugin-api</artifactId>
<version>${project.version}</version>
</dependency>
+
+ <!-- TODO http://jira.codehaus.org/browse/SONAR-2011
+ We need following dependency, otherwise we will receive compilation error
+ -->
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-project</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
<dependency>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-testing-harness</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
-</project> \ No newline at end of file
+</project>