You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mrunit.apache.org by br...@apache.org on 2011/10/25 18:30:36 UTC

svn commit: r1188763 - /incubator/mrunit/branches/mrunit-0.5.0/pom.xml

Author: brock
Date: Tue Oct 25 16:30:35 2011
New Revision: 1188763

URL: http://svn.apache.org/viewvc?rev=1188763&view=rev
Log:
MRUNIT-33: maven assembly fails with no assembly descriptors found

Modified:
    incubator/mrunit/branches/mrunit-0.5.0/pom.xml

Modified: incubator/mrunit/branches/mrunit-0.5.0/pom.xml
URL: http://svn.apache.org/viewvc/incubator/mrunit/branches/mrunit-0.5.0/pom.xml?rev=1188763&r1=1188762&r2=1188763&view=diff
==============================================================================
--- incubator/mrunit/branches/mrunit-0.5.0/pom.xml (original)
+++ incubator/mrunit/branches/mrunit-0.5.0/pom.xml Tue Oct 25 16:30:35 2011
@@ -64,13 +64,13 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
         <version>2.2.1</version>
+        <configuration>
+          <descriptors>
+            <descriptor>src/main/assembly/dist.xml</descriptor>
+          </descriptors>
+        </configuration>
         <executions>
           <execution>
-            <configuration>
-              <descriptors>
-                <descriptor>src/main/assembly/dist.xml</descriptor>
-              </descriptors>
-            </configuration>
             <phase>package</phase>
             <goals>
               <goal>single</goal>