diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-07-17 14:06:27 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-07-17 14:06:27 +0200 |
commit | bb5b674ddb3803de1db11772c21eeeca7696a087 (patch) | |
tree | b9ca1e49b4a9c516a1050d4290e08f711ad23376 | |
parent | 949a5cd9491324c8078991a98f0ffe93fa0e20b5 (diff) | |
download | sonarqube-bb5b674ddb3803de1db11772c21eeeca7696a087.tar.gz sonarqube-bb5b674ddb3803de1db11772c21eeeca7696a087.zip |
SONAR-5462 Upgrade PostgreSQL driver to support 9.3
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | server/sonar-web/pom.xml | 2 | ||||
-rw-r--r-- | sonar-application/pom.xml | 2 | ||||
-rw-r--r-- | sonar-core/pom.xml | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -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> |