001 package org.apache.maven.project.inheritance.t12;
002
003 /*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements. See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership. The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License. You may obtain a copy of the License at
011 *
012 * http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied. See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022 import java.io.File;
023 import java.util.Map;
024
025 import org.apache.maven.model.Plugin;
026 import org.apache.maven.project.MavenProject;
027 import org.apache.maven.project.inheritance.AbstractProjectInheritanceTestCase;
028
029 /**
030 * Verifies that plugin execution sections in the parent POM that have
031 * inherit == false are not inherited to the child POM.
032 */
033 public class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase
034 {
035 // ----------------------------------------------------------------------
036 //
037 // p1 inherits from p0
038 // p0 inherits from super model
039 //
040 // or we can show it graphically as:
041 //
042 // p1 ---> p0 --> super model
043 //
044 // ----------------------------------------------------------------------
045
046 public void testFalsePluginExecutionInheritValue() throws Exception
047 {
048 File localRepo = getLocalRepositoryPath();
049
050 File pom0 = new File( localRepo, "p0/pom.xml" );
051 File pom0Basedir = pom0.getParentFile();
052 File pom1 = new File( pom0Basedir, "p1/pom.xml" );
053
054 getProjectWithDependencies( pom0 );
055 MavenProject project1 = getProjectWithDependencies( pom1 );
056
057 Map pluginMap = project1.getBuild().getPluginsAsMap();
058 Plugin compilerPlugin = (Plugin) pluginMap.get( "org.apache.maven.plugins:maven-compiler-plugin" );
059
060 assertNotNull( compilerPlugin );
061
062 Map executionMap = compilerPlugin.getExecutionsAsMap();
063 assertNull( "Plugin execution: \'test\' should NOT exist in the compiler plugin specification for the child project!", executionMap.get( "test" ) );
064 }
065 }