This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sis-site.git
The following commit(s) were added to refs/heads/main by this push:
new 356a1ff4 Replace our custom `JAVA_OPTS` environment variable by the
standard `JDK_JAVA_OPTIONS`.
https://docs.oracle.com/en/java/javase/21/docs/specs/man/java.html#using-the-jdk_java_options-launcher-environment-variable
356a1ff4 is described below
commit 356a1ff47870d260813afa1fb6427c0e21cddcb1
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Tue Nov 21 16:02:31 2023 +0100
Replace our custom `JAVA_OPTS` environment variable by the standard
`JDK_JAVA_OPTIONS`.
https://docs.oracle.com/en/java/javase/21/docs/specs/man/java.html#using-the-jdk_java_options-launcher-environment-variable
---
content/epsg.md | 2 +-
content/release-management.md | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/content/epsg.md b/content/epsg.md
index 316c643a..b47ca40c 100644
--- a/content/epsg.md
+++ b/content/epsg.md
@@ -219,7 +219,7 @@ When Apache {{% SIS %}} is used in a JavaEE container, the
data source can be co
the Derby databases are located (skip this step if another database is
used):
{{< highlight bash >}}
-export JAVA_OPTS=-Dderby.system.home=$SIS_DATA/Databases
+export JDK_JAVA_OPTIONS=-Dderby.system.home=$SIS_DATA/Databases
{{< / highlight >}}
3. Declare the JNDI name in application `WEB-INF/web.xml` file:
diff --git a/content/release-management.md b/content/release-management.md
index 7e4574ea..edd627eb 100644
--- a/content/release-management.md
+++ b/content/release-management.md
@@ -591,9 +591,9 @@ Specify the URL to the nexus repository, where `####` is
the identifier of the "
export SIS_DATA=/tmp/apache-sis-data
mkdir $SIS_DATA
export JAVA_HOME=$JDK11_HOME
-export JAVA_OPTS="-enableassertions -Dorg.apache.sis.epsg.downloadURL"
-export
JAVA_OPTS=$JAVA_OPTS=https://repository.apache.org/content/repositories/orgapachesis-####
-export
JAVA_OPTS=$JAVA_OPTS/org/apache/sis/non-free/sis-epsg/$NEW_VERSION/sis-epsg-$NEW_VERSION.jar
+export JDK_JAVA_OPTIONS="-enableassertions -Dorg.apache.sis.epsg.downloadURL"
+export
JDK_JAVA_OPTIONS=$JDK_JAVA_OPTIONS=https://repository.apache.org/content/repositories/orgapachesis-####
+export
JDK_JAVA_OPTIONS=$JDK_JAVA_OPTIONS/org/apache/sis/non-free/sis-epsg/$NEW_VERSION/sis-epsg-$NEW_VERSION.jar
{{< / highlight >}}