Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I found out myself what to do:</p> <ol> <li>Make sure ant is in your path (e.g. I added C:\Programme\NetBeans 6.9.1\java\ant\bin to my PATH environment)</li> <li>Make sure your JAVA_HOME is set correctly</li> <li>execute "ant clean" and "ant jar" in the directory of your netbeans project</li> </ol> <p>The batchfile I use:</p> <pre><code>SET JAVA_HOME=C:\Programme\Java\jdk1.6.0_12 call ant deps-clean call ant clean call ant jar pause cp -r doc dist cp -r scripts dist cp -r examples dist cp -r crypt dist cp -r db dist cp -r license dist rm dist/README.TXT cp README.TXT dist echo package creation %date:~-4,4%_%date:~-7,2%_%date:~0,2% &gt;&gt; dist/README.TXT cd win_service RCEDIT.exe /C wizard.exe RCEDIT.exe /I wizard.exe my_app.ico RCEDIT.exe /N wizard.exe pre_wizard.ini RCEDIT.exe /C my_app_service.exe RCEDIT.exe /I my_app_service.exe my_app.ico RCEDIT.exe /N my_app_service.exe pre_my_app_service.ini cp my_app_service.ini ../dist cp my_app_service.exe ../dist cp wizard.exe ../dist cp wizard.ini ../dist cp service*.bat ../dist cp *.nsi ../dist cp *.nsh ../dist cp my_app.log ../dist cd .. cd dist mkdir windows cp *.jar windows cp -r lib windows cp -r crypt windows cp -r db windows cp examples\empty_settings.ini windows\settings_example.ini mv *.exe windows mv *.ini windows mv *.bat windows mv *.nsi windows mv *.nsh windows mv my_app.log windows cd windows my_app.nsi mv my_appInstaller.exe ../my_appInstaller_gpl.exe rm lib\jdbc-mysql.jar my_app.nsi mv my_appInstaller.exe ../my_appInstaller.exe cd .. rm -rf my_app mkdir my_app mv *.jar my_app mv lib my_app mv crypt my_app mv db my_app mv examples\empty_settings.ini my_app\settings.ini ren my_app 9880 mkdir my_app mv 9880 my_app 7z a -r -tzip my_app_gpl.zip doc license examples scripts my_app README.txt my_appInstaller_gpl.exe rm my_app\9880\lib\jdbc-mysql.jar 7z a -r -tzip my_app.zip doc license examples scripts my_app README.txt my_appInstaller.exe cd .. pause </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload