quick workaround for scm:perform-release, which checks out to a clean base directory

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114753 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2004-02-26 16:20:59 +00:00
parent 5bd72529cf
commit e5632c7345

View File

@@ -1,4 +1,14 @@
<project
xmlns:j="jelly:core">
xmlns:ant="jelly:ant"
xmlns:maven="jelly:maven">
</project>
<!-- XXX: must be a nicer way - maybe SCM can read the POM and recursively checkout parent directories
project.xml, maven.xml, project.properties, but tag will not be set -->
<!-- perhaps copy extended project.xml into current directory, merge higher extends, commit & tag, replace extends
in main POM? -->
<postGoal name="scm:cvs-checkout-project">
<maven:pluginVar plugin="maven-scm-plugin" property="maven.scm.checkout.dir" var="dir" />
<ant:copy todir="${dir}/maven-plugins" file="${pom.parent.file}" />
</postGoal>
</project>