diff options
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r-- | sonar-plugin-api/pom.xml | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index eedc11ae2d9..dcf05f40727 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -64,6 +64,7 @@ <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-squid</artifactId> </dependency> + <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> @@ -81,6 +82,10 @@ <artifactId>hibernate-entitymanager</artifactId> </dependency> <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-ehcache</artifactId> + </dependency> + <dependency> <groupId>geronimo-spec</groupId> <artifactId>geronimo-spec-jta</artifactId> </dependency> @@ -96,6 +101,10 @@ <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> </dependency> + + <!-- TODO remove dependencies on Maven + but for now they should be defined with scope provided + --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> @@ -111,10 +120,7 @@ <artifactId>maven-project</artifactId> <scope>provided</scope> </dependency> - <dependency> - <groupId>org.apache.maven.shared</groupId> - <artifactId>maven-common-artifact-filters</artifactId> - </dependency> + <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> @@ -136,10 +142,6 @@ <artifactId>commons-codec</artifactId> </dependency> <dependency> - <groupId>org.hibernate</groupId> - <artifactId>hibernate-ehcache</artifactId> - </dependency> - <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> </dependency> @@ -236,4 +238,4 @@ <scope>test</scope> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> |