diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java index 0bc0a80578..854865a8c2 100644 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java @@ -115,6 +115,7 @@ public class IntegrationTestSuite suite.addTestSuite( MavenITmng4327ExcludeForkingMojoFromForkedLifecycleTest.class ); suite.addTestSuite( MavenITmng4321CliUsesPluginMgmtConfigTest.class ); suite.addTestSuite( MavenITmng4320AggregatorAndDependenciesTest.class ); + suite.addTestSuite( MavenITmng4319PluginExecutionGoalInterpolationTest.class ); suite.addTestSuite( MavenITmng4318ProjectExecutionRootTest.class ); suite.addTestSuite( MavenITmng4317PluginVersionResolutionFromMultiReposTest.class ); suite.addTestSuite( MavenITmng4314DirectInvocationOfAggregatorTest.class ); diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4319PluginExecutionGoalInterpolationTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4319PluginExecutionGoalInterpolationTest.java new file mode 100644 index 0000000000..92633ba0f8 --- /dev/null +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4319PluginExecutionGoalInterpolationTest.java @@ -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; +import java.util.Iterator; +import java.util.List; + +/** + * This is a test set for MNG-4319. + * + * @author Benjamin Bentmann + */ +public class MavenITmng4319PluginExecutionGoalInterpolationTest + extends AbstractMavenIntegrationTestCase +{ + + public MavenITmng4319PluginExecutionGoalInterpolationTest() + { + super( "[2.0,2.0.99),[3.0-alpha-1,)" ); + } + + /** + * Test that goals in plugin executions can be interpolated. + */ + public void testit() + throws Exception + { + File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4319" ); + + Verifier verifier = new Verifier( testDir.getAbsolutePath() ); + verifier.setAutoclean( false ); + verifier.deleteDirectory( "target" ); + verifier.executeGoal( "validate" ); + verifier.verifyErrorFreeLog(); + verifier.resetStreams(); + + verifier.assertFilePresent( "target/touch.txt" ); + } + +} diff --git a/its/core-it-suite/src/test/resources/mng-4319/pom.xml b/its/core-it-suite/src/test/resources/mng-4319/pom.xml new file mode 100644 index 0000000000..30c764d6d4 --- /dev/null +++ b/its/core-it-suite/src/test/resources/mng-4319/pom.xml @@ -0,0 +1,60 @@ + + + + + + 4.0.0 + + org.apache.maven.its.mng4319 + test + 0.1 + + Maven Integration Test :: MNG-4319 + + Test that goals in plugin executions can be interpolated. + + + + reset + + + + + + org.apache.maven.its.plugins + maven-it-plugin-log-file + 2.1-SNAPSHOT + + + default + validate + + + ${theGoal} + + + target/touch.txt + + + + + + +