java - javafxpackager installs applications one on top of the other on Windows -
i've used netbeans tool wrap swing applications native installer. however, applications seem install same destination folder on windows , isn't clear me configure this.
i'm assuming installer accepts universal unique identifier potential upgrades application might change name , identifier identical between both installers. can't seem find such identifier defined though?
the javafx packager determines install target directory based on vendor name specified creating package. application name used name shortcut application.
i assume using javafx ant task create installer. in case, have build target setting fx task this:
<fx:deploy ... > <fx:application name="${application.title}" mainclass="..." /> <fx:info title="${application.title}" vendor="${application.vendor}" /> [...] </fx:deploy>
in case, need set ${application.vendor}
property whatever want target directory.
Comments
Post a Comment