You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2016/02/22 19:26:50 UTC

svn commit: r1731707 - /maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java

Author: khmarbaise
Date: Mon Feb 22 18:26:50 2016
New Revision: 1731707

URL: http://svn.apache.org/viewvc?rev=1731707&view=rev
Log:
[MINVOKER-199] Remove @Deprecated marked code and parameters
 o Removed testProperties parameter including the references.

Modified:
    maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java

Modified: maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java?rev=1731707&r1=1731706&r2=1731707&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java (original)
+++ maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java Mon Feb 22 18:26:50 2016
@@ -296,14 +296,6 @@ public abstract class AbstractInvokerMoj
     private String testPropertiesFile;
 
     /**
-     * Common set of test properties to pass in on each IT's command line, via -D parameters.
-     *
-     * @deprecated As of version 1.1, use the {@link #properties} parameter instead.
-     */
-    @Parameter
-    private Properties testProperties;
-
-    /**
      * Common set of properties to pass in on each project's command line, via -D parameters.
      *
      * @since 1.1
@@ -1806,11 +1798,6 @@ public abstract class AbstractInvokerMoj
     {
         Properties collectedTestProperties = new Properties();
 
-        if ( testProperties != null )
-        {
-            collectedTestProperties.putAll( testProperties );
-        }
-
         if ( properties != null )
         {
             // MINVOKER-118: property can have empty value, which is not accepted by collectedTestProperties