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 import java.util.Properties;
26
27
28
29
30
31
32
33
34 public class MavenITmng5000ChildPathAwareUrlInheritanceTest
35 extends AbstractMavenIntegrationTestCase
36 {
37
38 public MavenITmng5000ChildPathAwareUrlInheritanceTest()
39 {
40 super( "[2.0.11,2.0.99),[2.2.0,3.0-alpha-1),[3.0.3,)" );
41 }
42
43
44
45
46
47
48
49 public void testit()
50 throws Exception
51 {
52 File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-5000" );
53
54 Verifier verifier = newVerifier( new File( testDir, "different-from-artifactId" ).getAbsolutePath() );
55 verifier.setAutoclean( false );
56 verifier.deleteDirectory( "target" );
57 verifier.executeGoal( "validate" );
58 verifier.verifyErrorFreeLog();
59 verifier.resetStreams();
60
61 Properties props = verifier.loadProperties( "target/pom.properties" );
62 assertEquals( "http://project.url/child", props.getProperty( "project.url" ) );
63 assertEquals( "http://viewvc.project.url/child", props.getProperty( "project.scm.url" ) );
64 assertEquals( "http://scm.project.url/child", props.getProperty( "project.scm.connection" ) );
65 assertEquals( "https://scm.project.url/child", props.getProperty( "project.scm.developerConnection" ) );
66 assertEquals( "http://site.project.url/child", props.getProperty( "project.distributionManagement.site.url" ) );
67 }
68
69 }