From c9b7c68d03f456016917607219bccd6f39975b6c Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Tue, 3 Sep 2019 17:13:15 -0700 Subject: [PATCH 1/2] Update to runtime plugin version 1.3.1 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 22a7cad..8c8fd8c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ plugins { id 'application' id 'org.openjfx.javafxplugin' version '0.0.8' - id 'org.beryx.runtime' version '1.3.0' + id 'org.beryx.runtime' version '1.3.1' } From f110ef169bc0c9587edd1fe62b3d8bdca3f0a946 Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Tue, 3 Sep 2019 17:55:28 -0700 Subject: [PATCH 2/2] WIP: Runtime 1.3.2-SNAPSHOT with identifier option --- build.gradle | 3 ++- settings.gradle | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8c8fd8c..75158d2 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ plugins { id 'application' id 'org.openjfx.javafxplugin' version '0.0.8' - id 'org.beryx.runtime' version '1.3.1' + id 'org.beryx.runtime' version '1.3.2-SNAPSHOT' } @@ -27,5 +27,6 @@ runtime { // imageOptions = ['--win-console'] installerOptions = ['--win-per-user-install', '--win-dir-chooser', '--win-menu', '--win-shortcut'] } + identifier = applicationName } } diff --git a/settings.gradle b/settings.gradle index c2bd2b4..3cff5b8 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,8 @@ +// Uncomment pluginManagement block for testing local plugin versions published to mavenLocal() +// pluginManagement { +// repositories { +// mavenLocal() +// gradlePluginPortal() +// } +// } rootProject.name = 'hellofx'