blob: 5574c67ea9abce1b107b98b37d00555d43322148 [file] [log] [blame]
<!-- build script to create JUnit Plugin -->
<project name="org.junit" default="export" basedir="..">
<target name="init">
<tstamp/>
<property name="destdir" value="../../plugin-export" />
<property name="plugin" value="org.junit" />
<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}" />
<copy file="junit.jar" todir="${dest}"/>
<copy file="junitsrc.zip" todir="${dest}"/>
<copy file="plugin.xml" todir="${dest}"/>
<copy file="about.html" todir="${dest}"/>
<copy file="plugin.properties" todir="${dest}"/>
</target>
</project>