blob: ce4eb89d486482c246f61dc7020f3ace3ff2a96c [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright (c) 2012 Eclispe contributors 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
-->
<project name="copyExampleLib" basedir="..">
<property name="examples.path" value="../../build/org.eclipse.app4mc.transformation.examples.installer/examples" />
<basename file="${build.project}" property="project" />
<macrodef name="copyExample">
<attribute name="project" />
<sequential>
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${examples.path}/@{project}">
<include name="**" />
</fileset>
</delete>
<copy todir="${examples.path}/@{project}" overwrite="true">
<fileset dir="@{project}">
<exclude name=".externalToolBuilders/" />
<exclude name="database/" />
<exclude name="bin/" />
<exclude name="target/" />
<exclude name=".settings/org.eclipse.mylyn*" />
<exclude name=".settings/org.eclipse.pde.api.tools.prefs" />
<exclude name="**/.gitignore" />
<exclude name="**/pom.xml" />
<exclude name="**/release.*" />
<include name="**" />
</fileset>
</copy>
<replaceregexp file="${examples.path}/@{project}/.project"
byline="false"
flags="sg"
match="\s*&lt;buildCommand>\s+&lt;name>org.eclipse.ui.externaltools.ExternalToolBuilder.*?&lt;/buildCommand>"
replace="" />
<replaceregexp file="${examples.path}/@{project}/.project"
byline="false"
flags="s"
match="\s*&lt;buildCommand>\s+&lt;name>org.eclipse.pde.api.tools.apiAnalysisBuilder.*?&lt;/buildCommand>"
replace="" />
<replaceregexp file="${examples.path}/@{project}/.project"
byline="false"
flags="s"
match="\s*&lt;buildCommand>\s+&lt;name>org.eclipse.emf.cdo.releng.version.VersionBuilder.*?&lt;/buildCommand>"
replace="" />
<replaceregexp file="${examples.path}/@{project}/.project"
byline="false"
flags="s"
match="\s*&lt;nature>org.eclipse.pde.api.tools.apiAnalysisNature&lt;/nature>"
replace="" />
<replaceregexp file="${examples.path}/@{project}/.project"
byline="false"
flags="s"
match="\s*&lt;nature>org.eclipse.emf.cdo.releng.version.VersionNature&lt;/nature>"
replace="" />
</sequential>
</macrodef>
</project>