You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by lt...@apache.org on 2006/02/01 19:52:33 UTC

svn commit: r374143 - /maven/maven-1/plugins/trunk/plugin/plugin.jelly

Author: ltheussl
Date: Wed Feb  1 10:52:30 2006
New Revision: 374143

URL: http://svn.apache.org/viewcvs?rev=374143&view=rev
Log:
PR: MPPLUGIN-35
plugin:install fails if maven.jar.final.name is set.
Now using ${maven.final.name}.jar everywhere.
Plugins need standard names so they can be uninstalled properly.

Modified:
    maven/maven-1/plugins/trunk/plugin/plugin.jelly

Modified: maven/maven-1/plugins/trunk/plugin/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/plugin/plugin.jelly?rev=374143&r1=374142&r2=374143&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/plugin/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/plugin/plugin.jelly Wed Feb  1 10:52:30 2006
@@ -230,7 +230,7 @@
       <assert:assertPluginAvailable groupId="maven" artifactId="maven-artifact-plugin" minRelease="1.7" neededBy="${plugin.artifactId}"/>
       <artifact:rewritePOM path="${maven.build.dir}/project.xml"/>
       <ant:jar
-        jarfile="${maven.build.dir}/${maven.jar.final.name}"
+        jarfile="${maven.build.dir}/${maven.final.name}.jar"
         basedir="${maven.build.dir}"
         update="true">       
         <ant:setProperty name="includes" value="project.xml" />