From 9fee592429decbb59bd715c71b376a721dda070d Mon Sep 17 00:00:00 2001 From: Pieter Bos Date: Thu, 29 Oct 2020 21:15:09 +0100 Subject: [PATCH] Add comment on why this depends on java.desktop --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 4c45099..39041ba 100644 --- a/build.gradle +++ b/build.gradle @@ -108,7 +108,9 @@ task buildExtension() { } runtime { options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages'] - modules = ['java.xml', 'java.sql', 'java.desktop'] //SQL required because of GSON dependency. Maybe get rid of that anyway... + modules = ['java.xml', 'java.sql', 'java.desktop'] + //SQL required because of GSON dependency. Maybe get rid of that anyway... + //java.desktop required because of glassfish JAXB targetPlatform('linux-x64', jvm_linux_home) targetPlatform('winx64', jvm_windows_home) targetPlatform('macos', jvm_macos_home)