From: Michael Ritter Date: Mon, 8 Sep 2025 23:09:11 +0000 (-0600) Subject: Fix JDBC Parameter var name (#476) X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=045c2a09152eaa35b2b278de2a94c95c9fa7bf56;p=tmp%2Fjakarta-migration.git Fix JDBC Parameter var name (#476) * Rename JDBC_URL_OPTS to JDBC_URL_PARAMS --- diff --git a/build.properties b/build.properties index ecce3d18a..087912083 100644 --- a/build.properties +++ b/build.properties @@ -198,11 +198,11 @@ db.jdbc.default.datasource=jdbc/default #db.jdbc.urloptions.encoded=ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory&foo=true # -# Use the JDBC_URL_OPTS env var to set the urloptions for the jdbc connection string +# Use the JDBC_URL_PARAMS env var to set the urloptions for the jdbc connection string # The db.jdbc.urloptions.encoded needs to be created in each ant target which uses it by calling the # urlencode scriptdef. We can still reference it below as it will be added at runtime. # -db.jdbc.urloptions=${env.JDBC_URL_OPTS} +db.jdbc.urloptions=${env.JDBC_URL_PARAMS} # # JDBC urls that CollectionSpace needs to talk to the "admin" database, Nuxeo databases, and the "cspace" database (i.e., the AuthN/AuthZ database) diff --git a/build.xml b/build.xml index 3cd4c4f94..d026cd911 100644 --- a/build.xml +++ b/build.xml @@ -17,7 +17,7 @@