gluonfx-maven-plugin
gluonfx-maven-plugin copied to clipboard
How to use gluonfx-maven-plugin without javafx-maven-plugin?
Currently gluonfx-maven-pluign depends upon javafx plugin. How we can use it without the need of javafx plugin?
As we are using zulu17.34.19-ca-fx-jdk17.0.3-win_x64
with have inbuild javafx libs, how to use plugin without any javafx lib dependencies?
maybe exclusions in the pom?
try to exclude the dependencies in the gluonfx-maven-plugin section in the pom.xml. If i remember well something like this:
<plugin>
<groupId>com.gluonhq</groupId>
<artifactId>gluonfx-maven-plugin</artifactId>
<version>${gluonfx.plugin.version}</version>
<EXCLUDE SECTION>
</EXCLUDE SECTION>
<configuration>
<target>${gluonfx.target}</target>
<mainClass>${main.class}</mainClass>