From 9f2204bf6ba7d0d4409b9b95640491cefdcb4d5e Mon Sep 17 00:00:00 2001 From: Rachael Ellen <36415565+Rachael-E@users.noreply.github.com> Date: Fri, 21 Dec 2018 14:50:44 +0000 Subject: [PATCH 1/2] Update README Update README to alert Java 11 users to potential exceptions which may occur when running the project. Providing a suggested workaround from the OpenJavaFX docs. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4629fc05df..6831e0b8af 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,10 @@ The plugin provides the project with everything an ArcGIS runtime project needs arcgis api as a dependency and downloads the native libraries into `$USER_HOME/.arcgis`. This download occurs automatically the first time you build the project and is only performed once. +Note, Java 11 users may find exceptions when running the project, if their library path is still set for Oracle JDK 1.8 (see the [OpenJavaFX docs](https://openjfx.io/openjfx-docs/) for more information). A workaround for this is to add the following argument in the `run` task of the build file: + +`systemProperty "java.library.path", "C:\tmp"` + ## Offline sample data Some samples require offline data. A `samples-data` directory will automatically download to the project root the first time you call the `run` task. From a56fbdd5bedd18af87ac4b693faa60ac70978f76 Mon Sep 17 00:00:00 2001 From: Tyler Schiewe Date: Fri, 21 Dec 2018 08:35:36 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6831e0b8af..76310a726d 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,11 @@ The plugin provides the project with everything an ArcGIS runtime project needs arcgis api as a dependency and downloads the native libraries into `$USER_HOME/.arcgis`. This download occurs automatically the first time you build the project and is only performed once. -Note, Java 11 users may find exceptions when running the project, if their library path is still set for Oracle JDK 1.8 (see the [OpenJavaFX docs](https://openjfx.io/openjfx-docs/) for more information). A workaround for this is to add the following argument in the `run` task of the build file: - -`systemProperty "java.library.path", "C:\tmp"` +## Java 11 +Java 11 users may find exceptions when running the project if their library path is still set for Oracle JDK 1.8 (see the [OpenJavaFX docs](https://openjfx.io/openjfx-docs/) for more information). A workaround for this is to add the following argument in the `run` task of the Gradle buildscript: +``` +systemProperty "java.library.path", "C:\tmp" +``` ## Offline sample data Some samples require offline data. A `samples-data` directory will automatically download to the project root the