You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2008/10/20 23:02:39 UTC

svn commit: r706411 - /maven/components/trunk/maven-distribution/pom.xml

Author: hboutemy
Date: Mon Oct 20 14:02:39 2008
New Revision: 706411

URL: http://svn.apache.org/viewvc?rev=706411&view=rev
Log:
use descriptors attribute of maven-assembly-plugin instead of descriptor, which is deprecated (merged from 2.0.x branch, r706409)

Modified:
    maven/components/trunk/maven-distribution/pom.xml

Modified: maven/components/trunk/maven-distribution/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-distribution/pom.xml?rev=706411&r1=706410&r2=706411&view=diff
==============================================================================
--- maven/components/trunk/maven-distribution/pom.xml (original)
+++ maven/components/trunk/maven-distribution/pom.xml Mon Oct 20 14:02:39 2008
@@ -69,7 +69,7 @@
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-file</artifactId>
     </dependency>
-    <!--Wagon-->  
+    <!--Wagon-->
     <dependency>
       <groupId>easymock</groupId>
       <artifactId>easymock</artifactId>
@@ -206,7 +206,9 @@
                   <goal>single</goal>
                 </goals>
                 <configuration>
-                  <descriptor>src/main/assembly/bin.xml</descriptor>
+                  <descriptors>
+                    <descriptor>src/main/assembly/bin.xml</descriptor>
+                  </descriptors>
                   <finalName>apache-maven-${pom.version}</finalName>
                 </configuration>
               </execution>