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

svn commit: r1239783 - /maven/plugins/trunk/maven-ear-plugin/pom.xml

Author: dennisl
Date: Thu Feb  2 19:39:08 2012
New Revision: 1239783

URL: http://svn.apache.org/viewvc?rev=1239783&view=rev
Log:
Stop using deprecated plugin configurations.

Modified:
    maven/plugins/trunk/maven-ear-plugin/pom.xml

Modified: maven/plugins/trunk/maven-ear-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/pom.xml?rev=1239783&r1=1239782&r2=1239783&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ear-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-ear-plugin/pom.xml Thu Feb  2 19:39:08 2012
@@ -154,14 +154,14 @@ under the License.
                   <goal>run</goal>
                 </goals>
                 <configuration>
-                  <tasks>
+                  <target>
                     <copy overwrite="true" todir="${project.build.testOutputDirectory}/projects">
                       <fileset dir="src/test/resources/projects" includes="**/pom.xml" />
                       <filterset>
                         <filter token="project.version" value="${project.version}" />
                       </filterset>
                     </copy>
-                  </tasks>
+                  </target>
                 </configuration>
               </execution>
             </executions>
@@ -190,12 +190,9 @@ under the License.
                   <includes>
                     <include>**/*IT.java</include>
                   </includes>
-                  <systemProperties combine.children="append">
-                    <property>
-                      <name>maven.home</name>
-                      <value>${maven.home}</value>
-                    </property>
-                  </systemProperties>
+                  <systemPropertyVariables combine.children="append">
+                    <maven.home>${maven.home}</maven.home>
+                  </systemPropertyVariables>
                 </configuration>
               </execution>
             </executions>