Mohammad Sadiq Shaikh
Mohammad Sadiq Shaikh

Reputation: 3200

Javafx Deployment Issues

I want to deploy javafx application:

It generates the executable file but with following problems:

Following these messages:

I created folder named package in root directory of app and in that windows folder.

So my path package/windows .I added athe resources in that folder such as app icon , .wix file . iss file .

Still it takes the default values

I am not getting what is wrong with it ..

Regards, Sadiq

Upvotes: 5

Views: 1750

Answers (2)

jaimebl
jaimebl

Reputation: 59

This solves Mubasher's question:

.............. ...........

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <configuration>

                            <additionalClasspathElements>
                                <additionalClasspathElement>${basedir}</additionalClasspathElement>
                            </additionalClasspathElements>

........... ......... ........

Upvotes: 1

Premjith
Premjith

Reputation: 1198

Please update your ant path:

In my case, Netbeans->tools->options->java->ant

Added the Folder that contains the "package folder". So that Ant can search for the icon or image.

enter image description here

Upvotes: 4

Related Questions