diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2015-05-20 10:39:24 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2015-05-20 10:41:48 +0200 |
commit | 419f034f1317d0a987ff26cd97a9af1fa5046931 (patch) | |
tree | 6f932d27e085811bec57199d179bbac15e423074 /sonar-plugin-api/pom.xml | |
parent | 895b846371f62c9cdf8bbc7f47fc921ea72614ff (diff) | |
download | sonarqube-419f034f1317d0a987ff26cd97a9af1fa5046931.tar.gz sonarqube-419f034f1317d0a987ff26cd97a9af1fa5046931.zip |
SONAR-6555 Dependency should continue to extends Edge
for backward compatibility with Java plugin
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r-- | sonar-plugin-api/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index d49195a8d01..06185b4c0a1 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -55,6 +55,12 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-graph</artifactId> + <!-- Set to provided to not be visible by plugins --> + <scope>provided</scope> + </dependency> <!-- TODO we can't remove hibernate-annotations, because currently it's used moreover it contains transitive dependency on dom4j, which is used in some plugins --> |