You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/03/24 19:21:09 UTC

svn commit: r1085060 - /myfaces/test/trunk/assembly/pom.xml

Author: lu4242
Date: Thu Mar 24 18:21:09 2011
New Revision: 1085060

URL: http://svn.apache.org/viewvc?rev=1085060&view=rev
Log:
update maven-dependency-plugin and fix tabs

Modified:
    myfaces/test/trunk/assembly/pom.xml

Modified: myfaces/test/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/test/trunk/assembly/pom.xml?rev=1085060&r1=1085059&r2=1085060&view=diff
==============================================================================
--- myfaces/test/trunk/assembly/pom.xml (original)
+++ myfaces/test/trunk/assembly/pom.xml Thu Mar 24 18:21:09 2011
@@ -31,8 +31,11 @@
   <build>
     <plugins>
        <plugin>
+       <!--
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>dependency-maven-plugin</artifactId>
+        -->
+        <artifactId>maven-dependency-plugin</artifactId>
         <executions>
           <execution>
             <id>copy-javadoc</id>
@@ -96,37 +99,37 @@
         <!-- EXECUTE mvn package to generate assembly files -->
         <artifactId>maven-assembly-plugin</artifactId>
         <executions>
-        	<execution>
-        	    <id>make_assembly_src</id>
-        	    <configuration>
-        	      <descriptors>
-			    	 <descriptor>src/main/assembly/coresrc.xml</descriptor>
-	    		  </descriptors>
-        	      <finalName>myfaces-test-${project.version}-src</finalName>	    		  
-        	      <appendAssemblyId>false</appendAssemblyId>
-		          <outputDirectory>target/assembly/out</outputDirectory>
-        		  <workDirectory>target/assembly/work</workDirectory>
-        	    </configuration>
-        	    <phase>package</phase>
-        	    <goals>
-        	       <goal>attached</goal>
-        	    </goals>        	    
-        	</execution>
-        	<execution>
-        	    <id>make_assembly_bin</id>
-        	    <configuration>
-		          <descriptors>
-	    			<descriptor>${basedir}/src/main/assembly/corebin.xml</descriptor>
-        	      </descriptors>
-        	      <finalName>myfaces-test-${project.version}-bin</finalName>
-        	      <appendAssemblyId>false</appendAssemblyId>
-		          <outputDirectory>target/assembly/out</outputDirectory>
-        		  <workDirectory>target/assembly/work</workDirectory>        	      
+            <execution>
+                <id>make_assembly_src</id>
+                <configuration>
+                  <descriptors>
+                     <descriptor>src/main/assembly/coresrc.xml</descriptor>
+                  </descriptors>
+                  <finalName>myfaces-test-${project.version}-src</finalName>
+                  <appendAssemblyId>false</appendAssemblyId>
+                  <outputDirectory>target/assembly/out</outputDirectory>
+                  <workDirectory>target/assembly/work</workDirectory>
                 </configuration>
                 <phase>package</phase>
-        	    <goals>
-        	       <goal>attached</goal>
-        	    </goals>
+                <goals>
+                   <goal>attached</goal>
+                </goals>                
+            </execution>
+            <execution>
+                <id>make_assembly_bin</id>
+                <configuration>
+                  <descriptors>
+                    <descriptor>${basedir}/src/main/assembly/corebin.xml</descriptor>
+                  </descriptors>
+                  <finalName>myfaces-test-${project.version}-bin</finalName>
+                  <appendAssemblyId>false</appendAssemblyId>
+                  <outputDirectory>target/assembly/out</outputDirectory>
+                  <workDirectory>target/assembly/work</workDirectory>
+                </configuration>
+                <phase>package</phase>
+                <goals>
+                   <goal>attached</goal>
+                </goals>
             </execution>
         </executions>
       </plugin>