| <project default="main" basedir="."> | |
| <property name="pde.build.scripts" value="${build.home}/${eclipse.builder}/plugins/org.eclipse.pde.build_3.1.0/scripts" /> | |
| <target name="main"> | |
| <touch file="${user.home}/.cvspass" /> | |
| <!--fetch the HEAD stream of all projects if build type specified as N--> | |
| <condition property="fetchTag" value="HEAD"> | |
| <equals arg1="${buildType}" arg2="N" /> | |
| </condition> | |
| <property name="fetchTag" value="" /> | |
| <!--this property required as of Eclipse 3.0 stream builds > 20031126 --> | |
| <property name="buildingOSGi" value="true" /> | |
| <!--run the build for the specified component--> | |
| <echo message="basedir: ${basedir}"/> | |
| <echo message="component: ${component}"/> | |
| <echo message="buildDirectory: ${buildDirectory}"/> | |
| <ant antfile="build.xml" dir="${pde.build.scripts}" > | |
| <property name="builder" value="${basedir}/../components/${component}" /> | |
| <property name="relengDir" value="${basedir}/.." /> | |
| <property name="compilerArg" value="-showversion"/> | |
| </ant> | |
| </target> | |
| </project> |