vtmoren
Programmer
- Aug 29, 2006
- 5
Building project using Ant (Netbeans Module Suite Project)
I want to automate building the zip distribution after the build is complete. how would I go about acomplishing this task?
I have both build and build-zip targets (which depend on the pre-existing Netbeans Platform targets):
<target name="build" depends="pre-build, suite.build" />
<target name="build-zip" depends="suite.build-zip">
<unzip src="${dist.dir}/${app.name}.zip" dest="${dist.dir}" />
<mkdir dir="${dist.dir}/installDir" />
<delete file="${dist.dir}/${app.name}.zip" />
</target>
-VM
I want to automate building the zip distribution after the build is complete. how would I go about acomplishing this task?
I have both build and build-zip targets (which depend on the pre-existing Netbeans Platform targets):
<target name="build" depends="pre-build, suite.build" />
<target name="build-zip" depends="suite.build-zip">
<unzip src="${dist.dir}/${app.name}.zip" dest="${dist.dir}" />
<mkdir dir="${dist.dir}/installDir" />
<delete file="${dist.dir}/${app.name}.zip" />
</target>
-VM