Skip to content

Commit 4d4780a

Browse files
Merge branch 'main' of github.com:oracle-samples/ojdbc-extensions into credential-factory-test
2 parents 7993946 + a7dc26c commit 4d4780a

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

ojdbc-provider-oci/example-adb.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@
4747
# Configures the OCI Database Connection String Provider. The OCID of the database
4848
# is configured as an environment variable or JVM system property named
4949
# "DATABASE_OCID":
50-
oracle.jdbc.provider.database=ojdbc-provider-oci-database-connection-string
51-
oracle.jdbc.provider.database.ocid=${DATABASE_OCID}
50+
oracle.jdbc.provider.connectionString=ojdbc-provider-oci-database-connection-string
51+
oracle.jdbc.provider.connectionString.ocid=${DATABASE_OCID}
5252

5353
# Configures the OCI Database TLS Provider. Again, the OCID of the database
5454
# is configured as an environment variable or JVM system property named
5555
# "DATABASE_OCID":
56-
oracle.jdbc.provider.sslContext=ojdbc-provider-oci-database-tls
57-
oracle.jdbc.provider.sslContext.ocid=${DATABASE_OCID}
56+
oracle.jdbc.provider.tlsConfiguration=ojdbc-provider-oci-database-tls
57+
oracle.jdbc.provider.tlsConfiguration.ocid=${DATABASE_OCID}

ojdbc-provider-oci/example-vault.properties

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
# connection property. For details, see:
4444
# https://docs.oracle.com/en/database/oracle/oracle-database/23/jajdb/oracle/jdbc/OracleConnection.html#CONNECTION_PROPERTY_CONFIG_FILE
4545

46-
# Configures the OCI Vault Password Provider. The OCID of the password secret
47-
# is configured as an environment variable or JVM system property named
48-
# "PASSWORD_OCID":
49-
oracle.jdbc.provider.user=ojdbc-provider-oci-vault-user
50-
oracle.jdbc.provider.user.ocid=${PASSWORD_OCID}
51-
5246
# Configures the OCI Vault Username Provider. The OCID of the username secret
5347
# is configured as an environment variable or JVM system property named
5448
# "USERNAME_OCID":
55-
oracle.jdbc.provider.password=ojdbc-provider-oci-vault-user
56-
oracle.jdbc.provider.password.ocid=${USERNAME_OCID}
49+
oracle.jdbc.provider.username=ojdbc-provider-oci-vault-username
50+
oracle.jdbc.provider.username.ocid=${USERNAME_OCID}
51+
52+
# Configures the OCI Vault Password Provider. The OCID of the password secret
53+
# is configured as an environment variable or JVM system property named
54+
# "PASSWORD_OCID":
55+
oracle.jdbc.provider.password=ojdbc-provider-oci-vault-password
56+
oracle.jdbc.provider.password.ocid=${PASSWORD_OCID}

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<name>Extensions for the Oracle JDBC Driver</name>
1111
<description>Oracle JDBC Extensions include providers for multiple resources</description>
12-
<url>https://github.com/oracle-samples/ojdbc-extensions</url>
12+
<url>https://github.com/oracle/ojdbc-extensions</url>
1313
<licenses>
1414
<license>
1515
<name>The Universal Permissive License (UPL), Version 1.0</name>
@@ -23,9 +23,9 @@
2323
</developer>
2424
</developers>
2525
<scm>
26-
<url>https://github.com/oracle-samples/ojdbc-extensions</url>
27-
<connection>scm:git:https://github.com/oracle-samples/ojdbc-extensions</connection>
28-
<developerConnection>scm:git:https://github.com/oracle-samples/ojdbc-extensions</developerConnection>
26+
<url>https://github.com/oracle/ojdbc-extensions</url>
27+
<connection>scm:git:https://github.com/oracle/ojdbc-extensions</connection>
28+
<developerConnection>scm:git:https://github.com/oracle/ojdbc-extensions</developerConnection>
2929
<tag>HEAD</tag>
3030
</scm>
3131

@@ -42,7 +42,7 @@
4242
<profiles>
4343
<!--
4444
This profile configures the "release" option for javac, which was added
45-
in JDK 9. See https://github.com/oracle-samples/ojdbc-extensions/pull/46
45+
in JDK 9. See https://github.com/oracle/ojdbc-extensions/pull/46
4646
-->
4747
<profile>
4848
<id>javac-release</id>

0 commit comments

Comments
 (0)