mirror of https://github.com/apache/maven.git
[MNG-6078] Perform a proper merge of the two sources of command line arguments
- Needed to extend Commons CLI's CommandLine just to perform the merged
This commit is contained in:
parent
5885e70e24
commit
dc9c4db449
|
@ -383,7 +383,7 @@ public class MavenCli
|
||||||
CLIManager cliManager = new CLIManager();
|
CLIManager cliManager = new CLIManager();
|
||||||
|
|
||||||
List<String> args = new ArrayList<>();
|
List<String> args = new ArrayList<>();
|
||||||
|
CommandLine mavenConfig = null;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
File configFile = new File( cliRequest.multiModuleProjectDirectory, MVN_MAVEN_CONFIG );
|
File configFile = new File( cliRequest.multiModuleProjectDirectory, MVN_MAVEN_CONFIG );
|
||||||
|
@ -398,8 +398,8 @@ public class MavenCli
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CommandLine config = cliManager.parse( args.toArray( new String[args.size()] ) );
|
mavenConfig = cliManager.parse( args.toArray( new String[args.size()] ) );
|
||||||
List<?> unrecongized = config.getArgList();
|
List<?> unrecongized = mavenConfig.getArgList();
|
||||||
if ( !unrecongized.isEmpty() )
|
if ( !unrecongized.isEmpty() )
|
||||||
{
|
{
|
||||||
throw new ParseException( "Unrecognized maven.config entries: " + unrecongized );
|
throw new ParseException( "Unrecognized maven.config entries: " + unrecongized );
|
||||||
|
@ -415,21 +415,14 @@ public class MavenCli
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
int index = 0;
|
if ( mavenConfig == null )
|
||||||
for ( String arg : cliRequest.args )
|
|
||||||
{
|
{
|
||||||
if ( arg.startsWith( "-D" ) )
|
cliRequest.commandLine = cliManager.parse( cliRequest.args );
|
||||||
{
|
}
|
||||||
// a property definition so needs to come last so that the last property wins
|
else
|
||||||
args.add( arg );
|
{
|
||||||
}
|
cliRequest.commandLine = new MergedCommandLine( cliManager.parse( cliRequest.args ), mavenConfig );
|
||||||
else
|
|
||||||
{
|
|
||||||
// not a property definition so needs to come first to override maven.config
|
|
||||||
args.add( index++, arg );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
cliRequest.commandLine = cliManager.parse( args.toArray( new String[args.size()] ) );
|
|
||||||
}
|
}
|
||||||
catch ( ParseException e )
|
catch ( ParseException e )
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,75 @@
|
||||||
|
package org.apache.maven.cli;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import org.apache.commons.cli.CommandLine;
|
||||||
|
import org.apache.commons.cli.Option;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A {@link CommandLine} instance that represents a merged command line combining CLI arguments with those from the
|
||||||
|
* {@code .mvn/maven.config} while reflecting the handling of {@link CLIManager#SET_SYSTEM_PROPERTY} versus all the
|
||||||
|
* other command line options (last wins vs first wins respectively).
|
||||||
|
*/
|
||||||
|
class MergedCommandLine
|
||||||
|
extends CommandLine
|
||||||
|
{
|
||||||
|
MergedCommandLine( CommandLine commandLine, CommandLine configFile )
|
||||||
|
{
|
||||||
|
// such a pity that Commons CLI does not offer either a builder or a formatter and we need to extend
|
||||||
|
// to perform the merge. A formatter would mean we could unparse and reparse (not ideal but would work).
|
||||||
|
// A builder would be ideal for this kind of merge like processing.
|
||||||
|
super();
|
||||||
|
// the args are easy, cli first then config file
|
||||||
|
for ( String arg : commandLine.getArgs() )
|
||||||
|
{
|
||||||
|
addArg( arg );
|
||||||
|
}
|
||||||
|
for ( String arg : configFile.getArgs() )
|
||||||
|
{
|
||||||
|
addArg( arg );
|
||||||
|
}
|
||||||
|
// now add all options, except for -D with cli first then config file
|
||||||
|
List<Option> setPropertyOptions = new ArrayList<>();
|
||||||
|
for ( Option opt : commandLine.getOptions() )
|
||||||
|
{
|
||||||
|
if ( String.valueOf( CLIManager.SET_SYSTEM_PROPERTY ).equals( opt.getOpt() ) )
|
||||||
|
{
|
||||||
|
setPropertyOptions.add( opt );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
addOption( opt );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for ( Option opt : configFile.getOptions() )
|
||||||
|
{
|
||||||
|
addOption( opt );
|
||||||
|
}
|
||||||
|
// finally add the CLI system properties
|
||||||
|
for ( Option opt : setPropertyOptions )
|
||||||
|
{
|
||||||
|
addOption( opt );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -19,11 +19,10 @@ package org.apache.maven.cli;
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.io.File;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
import org.apache.commons.cli.ParseException;
|
import org.apache.commons.cli.ParseException;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import java.io.File;
|
||||||
|
|
||||||
public class MavenCliTest
|
public class MavenCliTest
|
||||||
extends TestCase
|
extends TestCase
|
||||||
|
@ -75,7 +74,8 @@ public class MavenCliTest
|
||||||
public void testMavenConfig()
|
public void testMavenConfig()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY, new File( "src/test/projects/config" ).getCanonicalPath() );
|
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY,
|
||||||
|
new File( "src/test/projects/config" ).getCanonicalPath() );
|
||||||
CliRequest request = new CliRequest( new String[0], null );
|
CliRequest request = new CliRequest( new String[0], null );
|
||||||
|
|
||||||
// read .mvn/maven.config
|
// read .mvn/maven.config
|
||||||
|
@ -85,7 +85,7 @@ public class MavenCliTest
|
||||||
assertEquals( "8", request.commandLine.getOptionValue( CLIManager.THREADS ) );
|
assertEquals( "8", request.commandLine.getOptionValue( CLIManager.THREADS ) );
|
||||||
|
|
||||||
// override from command line
|
// override from command line
|
||||||
request = new CliRequest( new String[] { "--builder", "foobar" }, null );
|
request = new CliRequest( new String[]{ "--builder", "foobar" }, null );
|
||||||
cli.cli( request );
|
cli.cli( request );
|
||||||
assertEquals( "foobar", request.commandLine.getOptionValue( "builder" ) );
|
assertEquals( "foobar", request.commandLine.getOptionValue( "builder" ) );
|
||||||
}
|
}
|
||||||
|
@ -93,7 +93,8 @@ public class MavenCliTest
|
||||||
public void testMavenConfigInvalid()
|
public void testMavenConfigInvalid()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY, new File( "src/test/projects/config-illegal" ).getCanonicalPath() );
|
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY,
|
||||||
|
new File( "src/test/projects/config-illegal" ).getCanonicalPath() );
|
||||||
CliRequest request = new CliRequest( new String[0], null );
|
CliRequest request = new CliRequest( new String[0], null );
|
||||||
|
|
||||||
cli.initialize( request );
|
cli.initialize( request );
|
||||||
|
@ -116,10 +117,14 @@ public class MavenCliTest
|
||||||
* </pre>
|
* </pre>
|
||||||
* and check if the {@code -T 3} option can be overwritten via command line
|
* and check if the {@code -T 3} option can be overwritten via command line
|
||||||
* argument.
|
* argument.
|
||||||
|
*
|
||||||
* @throws Exception in case of failure.
|
* @throws Exception in case of failure.
|
||||||
*/
|
*/
|
||||||
public void testMVNConfigurationThreadCanBeOverwrittenViaCommandLine() throws Exception {
|
public void testMVNConfigurationThreadCanBeOverwrittenViaCommandLine()
|
||||||
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY, new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
throws Exception
|
||||||
|
{
|
||||||
|
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY,
|
||||||
|
new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
||||||
CliRequest request = new CliRequest( new String[]{ "-T", "5" }, null );
|
CliRequest request = new CliRequest( new String[]{ "-T", "5" }, null );
|
||||||
|
|
||||||
cli.initialize( request );
|
cli.initialize( request );
|
||||||
|
@ -137,11 +142,15 @@ public class MavenCliTest
|
||||||
* </pre>
|
* </pre>
|
||||||
* and check if the {@code -Drevision-1.3.0} option can be overwritten via command line
|
* and check if the {@code -Drevision-1.3.0} option can be overwritten via command line
|
||||||
* argument.
|
* argument.
|
||||||
|
*
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public void testMVNConfigurationDefinedPropertiesCanBeOverwrittenViaCommandLine() throws Exception {
|
public void testMVNConfigurationDefinedPropertiesCanBeOverwrittenViaCommandLine()
|
||||||
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY, new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
throws Exception
|
||||||
CliRequest request = new CliRequest( new String[]{ "-Drevision=8.1.0"}, null );
|
{
|
||||||
|
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY,
|
||||||
|
new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
||||||
|
CliRequest request = new CliRequest( new String[]{ "-Drevision=8.1.0" }, null );
|
||||||
|
|
||||||
cli.initialize( request );
|
cli.initialize( request );
|
||||||
// read .mvn/maven.config
|
// read .mvn/maven.config
|
||||||
|
@ -160,11 +169,15 @@ public class MavenCliTest
|
||||||
* </pre>
|
* </pre>
|
||||||
* and check if the {@code -Drevision-1.3.0} option can be overwritten via command line
|
* and check if the {@code -Drevision-1.3.0} option can be overwritten via command line
|
||||||
* argument.
|
* argument.
|
||||||
|
*
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public void testMVNConfigurationCLIRepeatedPropertiesLastWins() throws Exception {
|
public void testMVNConfigurationCLIRepeatedPropertiesLastWins()
|
||||||
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY, new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
throws Exception
|
||||||
CliRequest request = new CliRequest( new String[]{ "-Drevision=8.1.0", "-Drevision=8.2.0"}, null );
|
{
|
||||||
|
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY,
|
||||||
|
new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
||||||
|
CliRequest request = new CliRequest( new String[]{ "-Drevision=8.1.0", "-Drevision=8.2.0" }, null );
|
||||||
|
|
||||||
cli.initialize( request );
|
cli.initialize( request );
|
||||||
// read .mvn/maven.config
|
// read .mvn/maven.config
|
||||||
|
@ -174,4 +187,38 @@ public class MavenCliTest
|
||||||
String revision = System.getProperty( "revision" );
|
String revision = System.getProperty( "revision" );
|
||||||
assertEquals( "8.2.0", revision );
|
assertEquals( "8.2.0", revision );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read .mvn/maven.config with the following definitions:
|
||||||
|
* <pre>
|
||||||
|
* -T 3
|
||||||
|
* -Drevision=1.3.0
|
||||||
|
* </pre>
|
||||||
|
* and check if the {@code -Drevision-1.3.0} option can be overwritten via command line argument when there are
|
||||||
|
* funky arguments present.
|
||||||
|
*
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public void testMVNConfigurationFunkyArguments()
|
||||||
|
throws Exception
|
||||||
|
{
|
||||||
|
System.setProperty( MavenCli.MULTIMODULE_PROJECT_DIRECTORY,
|
||||||
|
new File( "src/test/projects/mavenConfigProperties" ).getCanonicalPath() );
|
||||||
|
CliRequest request = new CliRequest(
|
||||||
|
new String[]{ "-Drevision=8.1.0", "--file=-Dpom.xml", "\"-Dfoo=bar ", "\"-Dfoo2=bar two\"",
|
||||||
|
"-Drevision=8.2.0" }, null );
|
||||||
|
|
||||||
|
cli.initialize( request );
|
||||||
|
// read .mvn/maven.config
|
||||||
|
cli.cli( request );
|
||||||
|
cli.properties( request );
|
||||||
|
|
||||||
|
String revision = System.getProperty( "revision" );
|
||||||
|
assertEquals( "8.2.0", revision );
|
||||||
|
|
||||||
|
assertEquals( "bar ", request.getSystemProperties().getProperty( "foo" ) );
|
||||||
|
assertEquals( "bar two", request.getSystemProperties().getProperty( "foo2" ) );
|
||||||
|
|
||||||
|
assertEquals( "-Dpom.xml", request.getCommandLine().getOptionValue( CLIManager.ALTERNATE_POM_FILE ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue