Upgrade to 1.7-SNAPSHOT

New tag artifact:rewritePOM : Rewrite a full model. Inheritence and expression are resolved.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@293047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier
2005-10-02 00:54:53 +00:00
parent a0fa5497cc
commit 3ed56886ca
3 changed files with 12 additions and 2 deletions

View File

@@ -162,6 +162,15 @@
basedir="${templateBasedir}"
template="${template}"/>
</define:tag>
<define:tag name="rewritePOM">
<maven:param-check value="${path}" fail="true" message="'path' must be specified"/>
<ant:echo>Rewriting POM...</ant:echo>
<j:invokeStatic className="org.apache.maven.artifact.PomRewriter" method="getRewrittenPom" var="pomFile">
<j:arg value="${pom}"/>
</j:invokeStatic>
<ant:copy file="${pomFile.path}" tofile="${path}"/>
</define:tag>
</define:taglib>

View File

@@ -23,7 +23,7 @@
<id>maven-artifact-plugin</id>
<name>Maven Artifact Plugin</name>
<!-- WARNING: some dependency checks will break if we get to 1.10, need to go to 2.0 from there -->
<currentVersion>1.6.1-SNAPSHOT</currentVersion>
<currentVersion>1.7-SNAPSHOT</currentVersion>
<description>Tools to manage artifacts and deployment. Requires Maven 1.1.</description>
<shortDescription>Tools to manage artifacts and deployment</shortDescription>
<url>http://maven.apache.org/reference/plugins/artifact/</url>

View File

@@ -24,8 +24,9 @@
<author email="vmassol@apache.org">Vincent Massol</author>
</properties>
<body>
<release version="1.6.1-SNAPSHOT" date="in SVN">
<release version="1.7-SNAPSHOT" date="in SVN">
<action dev="brett" type="fix" issue="MPARTIFACT-58">Correct handling of directory without a leading /</action>
<action dev="aheritier" type="add">New tag artifact:rewritePOM : Rewrite a full model. Inheritence and expression are resolved.</action>
</release>
<release version="1.6" date="2005-07-30">
<action dev="brett" type="fix" issue="MPARTIFACT-55">Correct basedir for file:// URLs</action>