Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/69a3257156cb0ef4831ff761c7a0d742 to your computer and use it in GitHub Desktop.
Save ezhov-da/69a3257156cb0ef4831ff761c7a0d742 to your computer and use it in GitHub Desktop.
java ant создание exe через launch4j netbeans
http://stackoverflow.com/questions/19917960/launch4j-how-to-attach-dependent-jars-to-generated-exe
[code:]xml[:code]<target name="package-for-launch4j" depends="package-for-store">
<echo message="Run create exe file"/>
<property name="launch4jexe.dir" location="E:\Launch4j" />
<taskdef name="launch4j"
classname="net.sf.launch4j.ant.Launch4jTask"
classpath="${launch4jexe.dir}/launch4j.jar
:${launch4jexe.dir}/lib/xstream.jar" />
<launch4j configFile="E:\_own_repository_data\java\trunk\java_application_server_updates\app_service_installer\launch4j_app_service_installer_build.xml" />
</target> [/code]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment