[ https://issues.apache.org/jira/browse/MINVOKER-164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15369615#comment-15369615 ]
Hudson commented on MINVOKER-164: --------------------------------- SUCCESS: Integrated in maven-plugins #6898 (See [https://builds.apache.org/job/maven-plugins/6898/]) [MINVOKER-164] Maven Invoker still using -r option when such is no longer supported o Drop Maven 2 support using maven-invoker component 3.0.0 (khmarbaise: [http://svn.apache.org/viewvc/?view=rev&rev=1752081]) * maven-invoker-plugin/pom.xml * maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/AbstractInvokerMojo.java * maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerProperties.java * maven-invoker-plugin/src/test/java/org/apache/maven/plugin/invoker/InvokerPropertiesTest.java > Maven Invoker still using -r option when such is no longer supported > -------------------------------------------------------------------- > > Key: MINVOKER-164 > URL: https://issues.apache.org/jira/browse/MINVOKER-164 > Project: Maven Invoker Plugin > Issue Type: Task > 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 > Assignee: Karl Heinz Marbaise > Priority: Minor > Fix For: 3.0.0 > > > 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.3.4#6332)