diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-08-07 00:01:38 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-08-07 00:27:14 +0200 |
commit | c36cc4d9b79e3c6b1aaddb07ff959937e39b77fd (patch) | |
tree | 1de506be5fe1c422ef086b2bbeaf50c89fd26feb /sonar-application/assembly.xml | |
parent | cddd1cb427019625c79133e8f6d9f0d9a64a156f (diff) | |
download | sonarqube-c36cc4d9b79e3c6b1aaddb07ff959937e39b77fd.tar.gz sonarqube-c36cc4d9b79e3c6b1aaddb07ff959937e39b77fd.zip |
SONAR-5499 Do not allow to change the distributed JDBC drivers
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 50553043ab1..17ff70213c6 100644 --- a/sonar-application/assembly.xml +++ b/sonar-application/assembly.xml @@ -120,7 +120,7 @@ </dependencySet> <!-- JDBC drivers --> <dependencySet> - <outputDirectory>extensions/jdbc-driver/mysql/</outputDirectory> + <outputDirectory>lib/jdbc/mysql/</outputDirectory> <includes> <include>mysql:mysql-connector-java</include> </includes> @@ -128,7 +128,7 @@ <scope>provided</scope> </dependencySet> <dependencySet> - <outputDirectory>extensions/jdbc-driver/postgresql/</outputDirectory> + <outputDirectory>lib/jdbc/postgresql/</outputDirectory> <includes> <include>org.postgresql:postgresql</include> </includes> @@ -136,7 +136,7 @@ <scope>provided</scope> </dependencySet> <dependencySet> - <outputDirectory>extensions/jdbc-driver/mssql/</outputDirectory> + <outputDirectory>lib/jdbc/jtds/</outputDirectory> <includes> <include>net.sourceforge.jtds:jtds</include> </includes> |