updated build.xml to produce dist zips

This commit is contained in:
Manindra Moharana
2013-09-17 17:44:22 +05:30
parent 1becbe7960
commit fa5346f8a8
2 changed files with 9 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ core.library.location=/home/quarkninja/Workspaces/processing-workspace/processin
app.library.location=/home/quarkninja/Workspaces/processing-workspace/processing/app/
java.target.version=1.6
lib.name=ExperimentalMode
prettyName=PDE X
dist=dist
release=3
prettyVersion=1.0.0b

View File

@@ -94,6 +94,14 @@
<replaceregexp file="${bundle}/mode.properties" flags="g" match="@@version@@" replace="${release}" />
<replaceregexp file="${bundle}/mode.properties" flags="g" match="@@pretty-version@@" replace="${prettyVersion}" />
<property name="v" value="_v"/>
<property name="zipStr" value=".zip"/>
<zip destfile="${dist}/${lib.name}${v}${prettyVersion}${zipStr}"
basedir="${dist}/"
excludes="**/.DS_Store"
/>
<delete dir="${bundle}/" />
</target>
<target name="full_install" depends="package" description="Full install to sketchbook">