I am trying to make an EXE installer of my Java Swing application following instructions found here: http://netbeans.org/kb/docs/java/native_pkg.html
my dist folder structure is like this :
-> dist
-> lib
-> application.jar
-> config folder //additional folder
-> another additional folder //additional folder
Those two additional folder listed above gets ignored after deploying native packaging. I want to add those two inside /app folder and keep the folder structure like below:
-> app
-> lib
-> config folder //additional folder
-> another additional folder //additional folder
-> application.jar
-> package.cfg
-> runtime
-> jre
-> applcation.exe
-> application.ico
-> unins000.dat
-> unins000.exe
I am using ant builder and inno setup for the purpose.
After trying for last few hours I decided to post it here for help. Anything towards the right direction will be greatly appreciated. Thanks in advance.