HHH-12462 - Use SAP HANA JDBC driver from Maven Central
This commit is contained in:
parent
62347cde01
commit
69000ddc16
|
@ -5,8 +5,4 @@
|
|||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
|
||||
jdbcDependency 'com.sap.db.jdbc:ngdbc:2.2.8'
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
}
|
||||
jdbcDependency 'com.sap.cloud.db.jdbc:ngdbc:2.2.16'
|
|
@ -61,6 +61,7 @@ dependencies {
|
|||
testRuntime( libraries.mysql )
|
||||
testRuntime( libraries.mariadb )
|
||||
testRuntime( libraries.mssql )
|
||||
testRuntime( libraries.hana )
|
||||
|
||||
testCompile( project( ':hibernate-jcache' ) )
|
||||
testRuntime( libraries.ehcache3 )
|
||||
|
|
|
@ -81,6 +81,7 @@ dependencies {
|
|||
testRuntime( libraries.mariadb )
|
||||
testRuntime( libraries.mssql )
|
||||
testRuntime( libraries.informix )
|
||||
testRuntime( libraries.hana )
|
||||
|
||||
asciidoclet 'org.asciidoctor:asciidoclet:1.+'
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ ext {
|
|||
oracle: 'com.oracle.jdbc:ojdbc7:12.1.0.2',
|
||||
mssql: 'com.microsoft.sqlserver:mssql-jdbc:6.1.0.jre8',
|
||||
db2: 'com.ibm.db2:db2jcc:10.5',
|
||||
hana: 'com.sap.db.jdbc:ngdbc:2.2.1', // for HANA 1 the minimum required client version is 1.120.20
|
||||
hana: 'com.sap.cloud.db.jdbc:ngdbc:2.2.16', // for HANA 1 the minimum required client version is 1.120.20
|
||||
|
||||
jodaTime: "joda-time:joda-time:${jodaTimeVersion}",
|
||||
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
jdbcDependency "com.sap.db.jdbc:ngdbc:2.2.1"
|
||||
jdbcDependency "com.sap.cloud.db.jdbc:ngdbc:2.2.16"
|
||||
|
|
Loading…
Reference in New Issue