diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-07-17 14:40:32 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-07-17 14:40:32 +0200 |
commit | a78cbd8b4975dd11afcce5bc0dd57a1e5ceed889 (patch) | |
tree | 9821c9a205ac35efe1e1da4ea203ae8477a0ea55 /sonar-application | |
parent | d50085f3d89aac3cbbbff575b9466bcde5e7c7bc (diff) | |
download | sonarqube-a78cbd8b4975dd11afcce5bc0dd57a1e5ceed889.tar.gz sonarqube-a78cbd8b4975dd11afcce5bc0dd57a1e5ceed889.zip |
SONAR-5462 Fix assembly due to group id update of postgresql driver
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/assembly.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/assembly.xml b/sonar-application/assembly.xml index bed1ebb79b4..b063dc66c4b 100644 --- a/sonar-application/assembly.xml +++ b/sonar-application/assembly.xml @@ -12,7 +12,7 @@ <useTransitiveFiltering>true</useTransitiveFiltering> <excludes> <exclude>mysql:mysql-connector-java</exclude> - <exclude>postgresql:postgresql</exclude> + <exclude>org.postgresql:postgresql</exclude> <exclude>net.sourceforge.jtds:jtds</exclude> <exclude>org.codehaus.sonar.plugins:*</exclude> <exclude>org.codehaus.sonar-plugins.*:*</exclude> @@ -61,7 +61,7 @@ <dependencySet> <outputDirectory>extensions/jdbc-driver/postgresql/</outputDirectory> <includes> - <include>postgresql:postgresql</include> + <include>org.postgresql:postgresql</include> </includes> <unpack>false</unpack> <scope>runtime</scope> |