| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Copyright (c) 2010, 2019 IBM Corporation and others. |
| This program and the accompanying materials |
| are made available under the terms of the Eclipse Public License 2.0 |
| which accompanies this distribution, and is available at |
| https://www.eclipse.org/legal/epl-2.0/ |
| |
| SPDX-License-Identifier: EPL-2.0 |
| |
| Contributors: |
| IBM Corporation - initial API and implementation |
| --> |
| |
| <project |
| default="build" |
| basedir="."> |
| <property |
| name="buildDirectory" |
| value="/home/data/httpd/download.eclipse.org/webtools/patches/drops/R3.2.2"/> |
| <property |
| name="buildLabel" |
| value="P-3.2.2-20101019173553"/> |
| <property |
| name="wtp.builder.home" |
| value="/shared/webtools/projectBuilders/patches-R3.2.2-P/webtools.releng/releng.wtpbuilder"/> |
| <echo message="buildDirectory: ${buildDirectory}"/> |
| <echo message="buildLabel: ${buildLabel}"/> |
| <echo message="wtp.builder.home: ${wtp.builder.home}"/> |
| |
| <property |
| name="tempDir" |
| value="tempdir"/> |
| <property |
| name="tempRunnableEclipse" |
| value="${tempDir}/eclipse"/> |
| <property |
| name="tempRepo" |
| value="temprepo"/> |
| <target name="build"> |
| |
| <antcall target="createPatchZip"> |
| <param |
| name="newarchiveName" |
| value="patches32x-${buildLabel}-b.zip"/> |
| |
| |
| </antcall> |
| </target> |
| <target name="createPatchZip"> |
| <ant |
| antfile="${wtp.builder.home}/scripts/build/ziputils.xml" |
| target="premirrortasks"> |
| <property |
| name="buildDirectory" |
| value="./"/> |
| <property |
| name="buildLabel" |
| value=""/> |
| </ant> |
| <p2.mirror |
| source="file://${buildDirectory}/${buildLabel}/repository" |
| destination="${tempRepo}" |
| log="mirrorlog-${newarchiveName}.log" |
| verbose="true"> |
| <slicingoptions |
| followstrict="true" |
| includeNonGreedy="false" |
| includeOptional="false"/> |
| <iu id="org.eclipse.wst.common_core.feature.patch.feature.group"/> |
| <iu id="org.eclipse.wst.common_ui.feature.patch.feature.group"/> |
| |
| <iu id="org.eclipse.wst.server_core.feature.patch.feature.group"/> |
| <iu id="org.eclipse.wst.server_ui.feature.patch.feature.group"/> |
| |
| <iu id="org.eclipse.wst.xml_core.feature.patch.feature.group"/> |
| <iu id="org.eclipse.wst.jsdt.feature.patch.feature.group"/> |
| <iu id="org.eclipse.wst.web_core.feature.patch.feature.group"/> |
| <iu id="org.eclipse.jst.web_core.feature.patch.feature.group"/> |
| <iu id="org.eclipse.wst.web_ui.feature.patch.feature.group"/> |
| |
| <iu id="org.eclipse.jst.web_ui.feature.patch.feature.group"/> |
| <iu id="org.eclipse.jst.enterprise_ui.feature.patch.feature.group"/> |
| |
| <iu id="org.eclipse.jpt.jpa.feature.patch.feature.group"/> |
| |
| <iu id="org.eclipse.wtp.releng.tests.feature.patch.feature.group"/> |
| |
| </p2.mirror> |
| <ant |
| antfile="${wtp.builder.home}/scripts/build/ziputils.xml" |
| target="postmirrortasks"> |
| <property |
| name="buildDirectory" |
| value="./"/> |
| <property |
| name="buildLabel" |
| value=""/> |
| </ant> |
| </target> |
| |
| </project> |