1 package org.apache.maven.it;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import org.apache.maven.it.util.ResourceExtractor;
23
24 import java.io.File;
25
26
27
28
29
30
31 public class MavenITmng4385LifecycleMappingFromExtensionInReactorTest
32 extends AbstractMavenIntegrationTestCase
33 {
34
35 public MavenITmng4385LifecycleMappingFromExtensionInReactorTest()
36 {
37 super( ALL_MAVEN_VERSIONS );
38 }
39
40
41
42
43
44
45
46 public void testit()
47 throws Exception
48 {
49 File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4385" );
50
51 Verifier verifier = newVerifier( testDir.getAbsolutePath() );
52 verifier.setAutoclean( false );
53 try
54 {
55 verifier.executeGoal( "validate" );
56 verifier.verifyErrorFreeLog();
57 fail( "Build leaked lifecycle mapping from extension of first project into second project!" );
58 }
59 catch( VerificationException e )
60 {
61
62 String msg = e.getMessage();
63
64 assertTrue( "Failure should be due to unknown packaging", msg.contains( "Unknown packaging: it-packaging" ));
65 assertTrue( "Failure should be due to sub-b project", msg.contains( "The project org.apache.maven.its.mng4385:sub-b:0.1" ));
66 }
67 verifier.resetStreams();
68 }
69
70 }