diff options
author | David Gageot <david@gageot.net> | 2012-07-02 10:10:27 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-07-03 10:57:02 +0200 |
commit | 25e954167dc467546cc555e78b607423afbaaa48 (patch) | |
tree | a764e082f2b79a1178ddade993d6090aa82c50f1 /sonar-core/pom.xml | |
parent | c8e75f24ad4cecedc7227cbda85e8989487aff28 (diff) | |
download | sonarqube-25e954167dc467546cc555e78b607423afbaaa48.tar.gz sonarqube-25e954167dc467546cc555e78b607423afbaaa48.zip |
Replacing Derby with H2
Diffstat (limited to 'sonar-core/pom.xml')
-rw-r--r-- | sonar-core/pom.xml | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index 9870817f428..e1aff5e0bb8 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -42,18 +42,6 @@ <artifactId>mybatis</artifactId> </dependency> <dependency> - <groupId>org.apache.derby</groupId> - <artifactId>derby</artifactId> - </dependency> - <dependency> - <groupId>org.apache.derby</groupId> - <artifactId>derbyclient</artifactId> - </dependency> - <dependency> - <groupId>org.apache.derby</groupId> - <artifactId>derbynet</artifactId> - </dependency> - <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-update-center-common</artifactId> </dependency> @@ -160,6 +148,11 @@ <artifactId>jtds</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>test</scope> + </dependency> </dependencies> <profiles> |