Skip to content

Commit a7dc26c

Browse files
Fixing Example for Connection String and TLS Provider (#60)
* Correcting property names * Updating GitHub URL
1 parent 931943d commit a7dc26c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
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}

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)