aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-07-17 14:06:27 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-07-17 14:06:27 +0200
commitbb5b674ddb3803de1db11772c21eeeca7696a087 (patch)
treeb9ca1e49b4a9c516a1050d4290e08f711ad23376
parent949a5cd9491324c8078991a98f0ffe93fa0e20b5 (diff)
downloadsonarqube-bb5b674ddb3803de1db11772c21eeeca7696a087.tar.gz
sonarqube-bb5b674ddb3803de1db11772c21eeeca7696a087.zip
SONAR-5462 Upgrade PostgreSQL driver to support 9.3
-rw-r--r--pom.xml4
-rw-r--r--server/sonar-web/pom.xml2
-rw-r--r--sonar-application/pom.xml2
-rw-r--r--sonar-core/pom.xml2
4 files changed, 5 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 3b5cacefd9d..50f20902ee7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -849,9 +849,9 @@
<version>5.1.27</version>
</dependency>
<dependency>
- <groupId>postgresql</groupId>
+ <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>9.1-901-1.jdbc4</version>
+ <version>9.3-1101-jdbc4</version>
</dependency>
<dependency>
<groupId>org.codehaus.sonar</groupId>
diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml
index 479bba07ad9..cc6e2043a1b 100644
--- a/server/sonar-web/pom.xml
+++ b/server/sonar-web/pom.xml
@@ -478,7 +478,7 @@
</build>
<dependencies>
<dependency>
- <groupId>postgresql</groupId>
+ <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml
index 6d402ab02b5..aa9706ac130 100644
--- a/sonar-application/pom.xml
+++ b/sonar-application/pom.xml
@@ -92,7 +92,7 @@
<scope>runtime</scope>
</dependency>
<dependency>
- <groupId>postgresql</groupId>
+ <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml
index a9b1883a42a..bad0f4f5503 100644
--- a/sonar-core/pom.xml
+++ b/sonar-core/pom.xml
@@ -170,7 +170,7 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>postgresql</groupId>
+ <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>