Author: jdcasey
Date: Thu Aug 14 20:35:48 2008
New Revision: 686135

URL: http://svn.apache.org/viewvc?rev=686135&view=rev
Log:
[MNG-3694] Add some other parameters to push the reactorProjects parameter into 
the middle of the plugin descriptor, to force the lifecycle executor to work 
harder to detect it.

Modified:
    
maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3694-reactorProjectsDynamism/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java

Modified: 
maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3694-reactorProjectsDynamism/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java
URL: 
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3694-reactorProjectsDynamism/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java?rev=686135&r1=686134&r2=686135&view=diff
==============================================================================
--- 
maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3694-reactorProjectsDynamism/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java
 (original)
+++ 
maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/mng-3694-reactorProjectsDynamism/maven-mng3694-plugin/src/main/java/plugin/MyMojo.java
 Thu Aug 14 20:35:48 2008
@@ -30,12 +30,25 @@
 public class MyMojo
     extends AbstractMojo
 {
+       
+       /**
+        * Not used, just an offset to place reactorProjects in the middle.
+        * @parameter default-value="${project.build.directory}"
+        */
+       private String outputDirectory;
+       
     /**
      * @parameter expression="${reactorProjects}"
      * @required
      */
     private List reactorProjects;
 
+       /**
+        * Not used, just an offset to place reactorProjects in the middle.
+        * @parameter default-value="${project.build.directory}"
+        */
+       private String outputDirectory2;
+
     public void execute()
         throws MojoExecutionException
     {


Reply via email to