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-application/assembly.xml | |
parent | c8e75f24ad4cecedc7227cbda85e8989487aff28 (diff) | |
download | sonarqube-25e954167dc467546cc555e78b607423afbaaa48.tar.gz sonarqube-25e954167dc467546cc555e78b607423afbaaa48.zip |
Replacing Derby with H2
Diffstat (limited to 'sonar-application/assembly.xml')
-rw-r--r-- | sonar-application/assembly.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-application/assembly.xml b/sonar-application/assembly.xml index cb8bcdf6e46..f1be3c02ec1 100644 --- a/sonar-application/assembly.xml +++ b/sonar-application/assembly.xml @@ -13,7 +13,7 @@ <excludes> <exclude>org.codehaus.sonar:sonar-server</exclude> <exclude>mysql:mysql-connector-java</exclude> - <exclude>org.apache.derby:derbyclient</exclude> + <exclude>com.h2database:h2</exclude> <exclude>postgresql:postgresql</exclude> <exclude>net.sourceforge.jtds:jtds</exclude> <exclude>org.codehaus.sonar.plugins:*</exclude> @@ -45,9 +45,9 @@ <scope>runtime</scope> </dependencySet> <dependencySet> - <outputDirectory>extensions/jdbc-driver/derby/</outputDirectory> + <outputDirectory>extensions/jdbc-driver/h2/</outputDirectory> <includes> - <include>org.apache.derby:derbyclient</include> + <include>com.h2database:h2</include> </includes> <unpack>false</unpack> <scope>runtime</scope> |