[MNG-4321] [regression] Configuration from plugin management is not applied to goals invoked from CLI

o Added IT

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@807567 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-08-25 11:22:30 +00:00
parent 9825603d33
commit 70c178ebde
3 changed files with 113 additions and 0 deletions

View File

@ -86,6 +86,7 @@ public class IntegrationTestSuite
// suite.addTestSuite( MavenIT0109ReleaseUpdateTest.class );
// suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137
suite.addTestSuite( MavenITmng4321CliUsesPluginMgmtConfigTest.class );
suite.addTestSuite( MavenITmng4318ProjectExecutionRootTest.class );
suite.addTestSuite( MavenITmng4317PluginVersionResolutionFromMultiReposTest.class );
suite.addTestSuite( MavenITmng4314DirectInvocationOfAggregatorTest.class );

View File

@ -0,0 +1,61 @@
package org.apache.maven.it;
/*
* 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.maven.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
/**
* This is a test set for <a href="http://jira.codehaus.org/browse/MNG-4321">MNG-4321</a>.
*
* @author Benjamin Bentmann
*/
public class MavenITmng4321CliUsesPluginMgmtConfigTest
extends AbstractMavenIntegrationTestCase
{
public MavenITmng4321CliUsesPluginMgmtConfigTest()
{
super( ALL_MAVEN_VERSIONS );
}
/**
* Test that configuration from plugin management also applies to goals that are invoked directly from the
* CLI even when the invoked plugin is neither explicitly present in the build/plugins section nor part of
* the lifecycle mappings for the project's packaging.
*/
public void testit()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4321" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
verifier.deleteDirectory( "target" );
verifier.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-log-file:2.1-SNAPSHOT:reset" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
verifier.assertFilePresent( "target/passed.log" );
}
}

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.mng4321</groupId>
<artifactId>test</artifactId>
<version>0.1</version>
<packaging>pom</packaging>
<name>Maven Integration Test :: MNG-4321</name>
<description>
Test that configuration from plugin management also applies to goals that are invoked directly from the
CLI even when the invoked plugin is neither explicitly present in the build/plugins section nor part of
the lifecycle mappings for the project's packaging.
</description>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-log-file</artifactId>
<version>2.1-SNAPSHOT</version>
<configuration>
<logFile>target/passed.log</logFile>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>