diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-05-26 16:19:42 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-05-26 16:30:12 +0200 |
commit | 7a4e71586a11644181f593aed3b23692ba887cdc (patch) | |
tree | 2f6b17b3c3135e9f06d24e9ce7ddd6d448ca8436 /tests | |
parent | be9f902cad18caa477f88684b922fa52033d0b1e (diff) | |
download | sonarqube-7a4e71586a11644181f593aed3b23692ba887cdc.tar.gz sonarqube-7a4e71586a11644181f593aed3b23692ba887cdc.zip |
SONAR-7652 fix connection to SQL Azure
Support of SSL connection is fixed by upgrading
to Microsoft driver 4.2.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/upgrade/pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/upgrade/pom.xml b/tests/upgrade/pom.xml index 847ca805db7..142a01662b8 100644 --- a/tests/upgrade/pom.xml +++ b/tests/upgrade/pom.xml @@ -91,10 +91,10 @@ </dependency> <dependency> <groupId>com.microsoft.sqljdbc</groupId> - <artifactId>sqljdbc41</artifactId> - <version>4.1</version> + <artifactId>sqljdbc</artifactId> + <version>4.2</version> <scope>system</scope> - <systemPath>${project.basedir}/../../sonar-application/src/main/assembly/lib/jdbc/mssql/sqljdbc41.jar + <systemPath>${project.basedir}/../../sonar-application/src/main/assembly/lib/jdbc/mssql/sqljdbc42.jar </systemPath> </dependency> </dependencies> |