You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "JC Carrillo (JIRA)" <ji...@codehaus.org> on 2014/03/19 14:21:59 UTC

[jira] (MINVOKER-164) Maven Invoker still using -r option when such is no longer supported

JC Carrillo created MINVOKER-164:
------------------------------------

             Summary: Maven Invoker still using -r option when such is no longer supported
                 Key: MINVOKER-164
                 URL: https://jira.codehaus.org/browse/MINVOKER-164
             Project: Maven Invoker Plugin
          Issue Type: Bug
         Environment: Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.9.2", arch: "x86_64", family: "mac"
            Reporter: JC Carrillo


Maven Invoker Version: 2.1.1

Maven Invoker is still using -r when such is not supported anymore. http://maven.apache.org/ref/3.2.1/maven-embedder/cli.html

This is affecting https://jira.codehaus.org/browse/MREACTOR-22

{code}
        if ( request.isActivatedReactor() )
        {
            cli.createArg().setValue( "-r" );
            String[] includes = request.getActivatedReactorIncludes();
            String[] excludes = request.getActivatedReactorExcludes();
            if ( includes != null )
            {
                cli.createArg().setValue( "-D" );
                cli.createArg().setValue( "maven.reactor.includes=" + StringUtils.join( includes, "," ) );
            }
            if ( excludes != null )
            {
                cli.createArg().setValue( "-D" );
                cli.createArg().setValue( "maven.reactor.excludes=" + StringUtils.join( excludes, "," ) );
            }
        }
{code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)