blob: 8d2bc8220656f0826caaaaccf97e7a42c84b944e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Copyright (c) 2008 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
IBM Corporation - initial API and implementation
-->
<project name="project" default="default">
<description>
Build the pdebuild-ant.jar. Either from scratch (default target), or by
gathering up the results of a workspace build from bin_ant.
</description>
<!-- =================================
target: default
================================= -->
<target name="default" description="--> description">
<tstamp/>
<eclipse.buildScript elements="plugin@org.eclipse.pde.build"
buildDirectory="${buildDirectory}"
configInfo="*,*,*"
baseLocation="${baseLocation}"
buildingOSGi="true"
outputUpdateJars="false"
pluginpath="${thisPlugin}"
forceContextQualifier="z${DSTAMP}${TSTAMP}"
/>
<delete file="lib/pdebuild-ant.jar" failonerror="false"/>
<ant antfile="build.xml" target="lib/pdebuild-ant.jar"/>
</target>
<target name="workspaceBinaries" description="Jar up the binaries that were compiled by the jdt builder" >
<mkdir dir="lib" />
<delete file="lib/pdebuild-ant.jar" failonerror="false"/>
<jar destfile="lib/pdebuild-ant.jar" basedir="bin_ant"/>
</target>
</project>