HHH-14284 Update Oracle JDBC driver configuration to test with version 19.8.0.0
This commit is contained in:
parent
abf42f4db0
commit
2ef9451112
|
@ -4,6 +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>.
|
||||
*/
|
||||
// Expected to match the jar name: drop a copy of ojdbc8.jar in a local directory,
|
||||
// then point the environment variable ADDITIONAL_REPO to that directory.
|
||||
jdbcDependency name : 'ojdbc8'
|
||||
jdbcDependency 'com.oracle.database.jdbc:ojdbc8:19.8.0.0'
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
hibernate.dialect org.hibernate.dialect.Oracle12cDialect
|
||||
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
hibernate.connection.url jdbc:oracle:thin:@hibernate-testing-oracle-se.ccuzkqo3zqzq.us-east-1.rds.amazonaws.com:1521:ORCL
|
||||
hibernate.connection.username hibernate_orm_test
|
||||
hibernate.connection.password hibernate_orm_test
|
||||
|
|
|
@ -69,7 +69,7 @@ hibernate.connection.url jdbc:hsqldb:./build/db/hsqldb/hibernate
|
|||
#hibernate.dialect org.hibernate.dialect.Oracle8iDialect
|
||||
#hibernate.dialect org.hibernate.dialect.Oracle9iDialect
|
||||
#hibernate.dialect org.hibernate.dialect.Oracle10gDialect
|
||||
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
#hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
#hibernate.connection.username ora
|
||||
#hibernate.connection.password ora
|
||||
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521:orcl
|
||||
|
|
|
@ -54,7 +54,7 @@ hibernate.connection.url @DB_URL@
|
|||
|
||||
#hibernate.dialect org.hibernate.dialect.OracleDialect
|
||||
#hibernate.dialect org.hibernate.dialect.Oracle9Dialect
|
||||
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
#hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
#hibernate.connection.username ora
|
||||
#hibernate.connection.password ora
|
||||
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521:test
|
||||
|
|
|
@ -74,7 +74,7 @@ ext {
|
|||
],
|
||||
oracle : [
|
||||
'db.dialect' : 'org.hibernate.dialect.Oracle10gDialect',
|
||||
'jdbc.driver': 'oracle.jdbc.driver.OracleDriver',
|
||||
'jdbc.driver': 'oracle.jdbc.OracleDriver',
|
||||
'jdbc.user' : 'hibernate_orm_test',
|
||||
'jdbc.pass' : 'hibernate_orm_test',
|
||||
'jdbc.url' : 'jdbc:oracle:thin:@localhost:1521/xe'
|
||||
|
|
|
@ -90,9 +90,7 @@ dependencies {
|
|||
asciidoclet 'org.asciidoctor:asciidoclet:1.+'
|
||||
|
||||
if ( db.equalsIgnoreCase( 'oracle' ) ) {
|
||||
testRuntime( libraries.oracle ) {
|
||||
exclude group: 'com.oracle.jdbc', module: 'xmlparserv2'
|
||||
}
|
||||
testRuntime( libraries.oracle )
|
||||
}
|
||||
else if ( db.equalsIgnoreCase( 'db2' ) ) {
|
||||
testRuntime( libraries.db2 )
|
||||
|
|
|
@ -116,7 +116,7 @@ ext {
|
|||
mariadb: 'org.mariadb.jdbc:mariadb-java-client:2.2.3',
|
||||
cockroachdb: 'org.postgresql:postgresql:42.2.8',
|
||||
|
||||
oracle: 'com.oracle.jdbc:ojdbc8:12.2.0.1',
|
||||
oracle: 'com.oracle.database.jdbc:ojdbc8:19.8.0.0',
|
||||
mssql: 'com.microsoft.sqlserver:mssql-jdbc:7.2.1.jre8',
|
||||
db2: 'com.ibm.db2:db2jcc:10.5',
|
||||
hana: 'com.sap.cloud.db.jdbc:ngdbc:2.4.59',
|
||||
|
|
|
@ -25,9 +25,7 @@ dependencies {
|
|||
testRuntime( libraries.expression_language )
|
||||
|
||||
if ( db.equalsIgnoreCase( 'oracle' ) ) {
|
||||
testRuntime( libraries.oracle ) {
|
||||
exclude group: 'com.oracle.jdbc', module: 'xmlparserv2'
|
||||
}
|
||||
testRuntime( libraries.oracle )
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect
|
||||
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB
|
||||
hibernate.connection.username C##hibernate
|
||||
hibernate.connection.password hibernate
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect
|
||||
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB
|
||||
hibernate.connection.username C##hibernate
|
||||
hibernate.connection.password hibernate
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatialSDO10gDialect
|
||||
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
hibernate.connection.url jdbc:oracle:thin:@localhost:1521:ORCLCDB
|
||||
hibernate.connection.username C##hibernate
|
||||
hibernate.connection.password hibernate
|
||||
|
|
|
@ -49,13 +49,13 @@ hibernate.connection.password @jdbc.pass@
|
|||
##
|
||||
#hibernate.spatial.connection_finder org.hibernate.spatial.dialect.oracle.TestConnectionFinder
|
||||
#hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatial10gDialect
|
||||
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
#hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521/orcl12c
|
||||
#hibernate.connection.username C##hibernate
|
||||
#hibernate.connection.password hibernate
|
||||
|
||||
#hibernate.dialect org.hibernate.spatial.dialect.oracle.OracleSpatialSDO10gDialect
|
||||
#hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
|
||||
#hibernate.connection.driver_class oracle.jdbc.OracleDriver
|
||||
#hibernate.connection.url jdbc:oracle:thin:@localhost:1521/orcl12c
|
||||
#hibernate.connection.username C##hibernate
|
||||
#hibernate.connection.password hibernate
|
||||
|
|
Loading…
Reference in New Issue