blob: 35d3ba31e4de385812f7e44f4e900987a998aad8 [file] [log] [blame]
<!-- build script to create a plugin from org.eclipse.jdt.ui.vcm -->
<project name="org.eclipse.jdt.ui.vcm" default="export" basedir="..">
<target name="init">
<tstamp/>
<property name="destdir" value="../../plugin-export" />
<property name="plugin" value="org.eclipse.jdt.ui.vcm" />
<property name="dest" value="${destdir}/${plugin}" />
</target>
<target name="build" depends="init">
<eclipse.incrementalBuild project="${plugin}" kind="incr"/>
</target>
<target name="export" depends="build">
<mkdir dir="${destdir}" />
<delete dir="${dest}" />
<mkdir dir="${dest}" />
<jar
jarfile="${dest}/jdtvcm.jar"
basedir="bin"
/>
<copy file="plugin.xml.off" todir="${dest}"/>
<copy file="plugin.properties" todir="${dest}"/>
<zip zipfile="${dest}/jdtvcmsrc.zip">
<fileset dir="vcm" />
</zip>
</target>
</project>