JavaFX 8 - How to build EXE with Maven & INNO -


i have not been able find working solution on how configure maven build exe javafx maven.

projects set e(fx)clipse using build.fxbuild work great, prefer have maven project, dependent modules rather basic ant builds.

i have seen comments on zenjava - appears plug in has lost traction , pretty dead.

is there out there can bundle exe maven? project enterprise project have several projects, , lots of dependencies - hoping simple, effective way manage of that.

thanks

the plugin not dead, official website taken down due costs produced.

just @ git-repository further details: https://github.com/javafx-maven-plugin/javafx-maven-plugin

we have sample configurations within our testing-folder: https://github.com/javafx-maven-plugin/javafx-maven-plugin/tree/master/src/it

to build exe-installer, can specify specific bundler (from version 8.1.3 , up).

to use plugin, put build-plugins:

        <plugin>             <groupid>com.zenjava</groupid>             <artifactid>javafx-maven-plugin</artifactid>             <version>8.1.3-snapshot</version>             <configuration>                 <mainclass>com.your.amazing.mavenized.javafxapplication</mainclass>                 <bundler>exe</bundler>             </configuration>         </plugin> 

disclaimer: i'm 1 of maintainer of plugin ;)


Comments

Popular posts from this blog

How to provide Authorization & Authentication using Asp.net, C#? -

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

How to use Authorization & Authentication in Asp.net, C#? -