[ https://jira.codehaus.org/browse/MINVOKER-164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Karl-Heinz Marbaise updated MINVOKER-164: ----------------------------------------- Fix Version/s: 1.9.1 > 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 > Fix For: 1.9.1 > > > 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)