templates.default-win-batch-script-template.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javafx-deploy-lib Show documentation
Show all versions of javafx-deploy-lib Show documentation
The JavaFX Deploy Lib provides a core functionality for assembling JavaFX applications. It is build-tool independent and is intended to be
used as a base to build plugins for Maven, Gradle and other third party tools. It is a direct replacement for the 'JavaFX packaging' library
that comes with the JDK but without the limitations that come from being bundled in the JDK.
@echo off
REM Launch script for ${app.title}
set APP_CP=.
#foreach($jarResource in $app.jarResources)
set APP_CP=%APP_CP%;${jarResource.replace("/", "\")}
#end
java -cp %APP_CP% ${app.mainClass}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy