gluonfx-maven-plugin icon indicating copy to clipboard operation
gluonfx-maven-plugin copied to clipboard

How to use gluonfx-maven-plugin without javafx-maven-plugin?

Open ctoabidmaqbool opened this issue 2 years ago • 2 comments

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?

ctoabidmaqbool avatar Jun 28 '22 12:06 ctoabidmaqbool

maybe exclusions in the pom?

grandadmiralmcb avatar Jul 20 '22 20:07 grandadmiralmcb

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>

harryssuperman avatar Nov 30 '22 22:11 harryssuperman