From e755149f12ea32566796e8434160823e613c5359 Mon Sep 17 00:00:00 2001 From: Dawid Motyka Date: Mon, 21 Sep 2020 23:08:45 +0200 Subject: [PATCH 1/2] Update DevDocs: workaround for issues with local openjfx maven libraries --- .../guidelines-for-setting-up-a-local-workspace.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md b/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md index 9bac648c0e7..ecfda4a80f3 100644 --- a/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md +++ b/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md @@ -256,3 +256,13 @@ java.lang.UnsupportedClassVersionError: org/javamodularity/moduleplugin/ModuleSy In rare cases you might encounter problems due to out-dated automatically generated source files. Running `./gradlew clean` deletes these old copies. Do not forget to run at least `./gradlew eclipse` or `./gradlew build` afterwards to regenerate the source files. +### Problems with openjfx libraries in local maven repository + +There might be problems with building if you have opejfx libraries in local maven repository, resulting in errors like this: +```text + > Could not find javafx-fxml-14-mac.jar (org.openjfx:javafx-fxml:14). + Searched in the following locations: + file:/repository/org/openjfx/javafx-fxml/14/javafx-fxml-14-mac.jar +``` +As a workaround, you can remove all local openjfx artifacts by deleting the whole openjfx folder from specified location. + From 92361dcd742ef2aef47b6db4a7a79fe7448cea67 Mon Sep 17 00:00:00 2001 From: Christoph Date: Tue, 22 Sep 2020 19:17:29 +0200 Subject: [PATCH 2/2] Fix lint --- .../guidelines-for-setting-up-a-local-workspace.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md b/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md index ecfda4a80f3..6f1083c7e12 100644 --- a/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md +++ b/docs/getting-into-the-code/guidelines-for-setting-up-a-local-workspace.md @@ -265,4 +265,3 @@ There might be problems with building if you have opejfx libraries in local mave file:/repository/org/openjfx/javafx-fxml/14/javafx-fxml-14-mac.jar ``` As a workaround, you can remove all local openjfx artifacts by deleting the whole openjfx folder from specified location. -