java - Zenjava, javafx maven and packaging with the dependancies -
ok have maven project uses javafx. @ moment packaging produces jar file along folder called lib external dependencies in there. there way can includes these dependencies. know on old zenjava archive (https://web.archive.org/web/20141004205604/http://zenjava.com:80/javafx/maven/jar-bundle.html) says older versions did?
here's build part of pom
<build> <finalname>clientsidemaven</finalname> <plugins> <plugin> <groupid>com.zenjava</groupid> <artifactid>javafx-maven-plugin</artifactid> <version>8.6.0</version> <configuration> <mainclass>com.canon.cel.consoleserverclient.mainapp</mainclass> </configuration> <executions> <execution> <id>create-jfxjar</id> <phase>package</phase> <goals> <goal>build-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
thanks in advance
Comments
Post a Comment