fxlauncher-gradle-plugin
fxlauncher-gradle-plugin copied to clipboard
Gradle plugin for FXLauncher
A project which is building fine with the 1.5.30 JVM plugin fails with 1.6.20 with the following error: ``` Execution failed for task ':copyAppDependencies'. > Resolving dependency configuration 'runtime' is...
Latest available is 1.0.20
I have tried several different configs and such, and this is the closest to your example app. Link: - debug output: https://gist.github.com/wess/45f0acc6f72be0f89a64d3c1fc7f1c05 - project: http://wess.co/15c0c3 ``` > Task :generateApplicationManifest FAILED...
Hi! I'm using fxlauncher for creating native installer for Windows. I need some customization of that process. Are project files appName.iss, appName.ico, appName-setup-icon.bmp used? I put them in "src/main/deploy/package/window" directory,...
Tried using the new plugin DSL with the 1.0.18 plugin (now in the gradle repository, per #16). ``` plugins { id 'no.tornado.fxlauncher' version '1.0.18' } ``` But I'm getting the...
wulf0r in pull request #15 got to the native param idea before me, so here's the javadoc I created that hopefully explains that parameter well.
I've used the javapackager in other projects before, so I'd like to say I kind of know what I'm talking about—kind of. The idea is convention over configuration. You put...
It seems dependencies in the `build.gradle` that use the `compile files()` command do not copy over to the deployment. ```groovy dependencies { compile files('U:/NP/Operational Planning/People/Thomas/maven_local/terajdbc4.jar') compile files('U:/NP/Operational Planning/People/Thomas/maven_local/tdgssconfig.jar') compile files('U:/NP/Operational...
Newer gradle versions recommend using the `implementation` or `api` keywords instead of `compile` and `runtime`. Unfortunately, the plugin doesn't seem to pick up dependencies declared in that way. https://docs.gradle.org/current/userguide/dependency_management_for_java_projects.html
First, another thanks for the people who have tried to make this plugin great. I'm using it for something at work—hence all the activity recently—so I'm willing to help where...