Author: bentmann
Date: Fri Nov 7 07:17:57 2008
New Revision: 712156
URL: http://svn.apache.org/viewvc?rev=712156&view=rev
Log:
o Extended IT
Modified:
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0141Test.java
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0141/child/pom.xml
Modified:
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0141Test.java
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0141Test.java?rev=712156&r1=712155&r2=712156&view=diff
==============================================================================
---
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0141Test.java
(original)
+++
maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenIT0141Test.java
Fri Nov 7 07:17:57 2008
@@ -69,6 +69,7 @@
assertEquals( "http://issue.org/", props.getProperty( prefix +
"projectIssueUrl" ) );
assertEquals( "http://ci.org/", props.getProperty( prefix +
"projectCiUrl" ) );
assertEquals( "child-dist-repo", props.getProperty( prefix +
"projectDistRepoName" ) );
+ assertEquals( "http://site.org/", props.getProperty( prefix +
"projectDistSiteUrl" ) );
assertEquals( "org.apache.maven.its.it0141", props.getProperty( prefix
+ "parentGroupId" ) );
assertEquals( "parent", props.getProperty( prefix + "parentArtifactId"
) );
Modified:
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0141/child/pom.xml
URL:
http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0141/child/pom.xml?rev=712156&r1=712155&r2=712156&view=diff
==============================================================================
---
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0141/child/pom.xml
(original)
+++
maven/core-integration-testing/trunk/core-it-suite/src/test/resources/it0141/child/pom.xml
Fri Nov 7 07:17:57 2008
@@ -60,6 +60,11 @@
<name>child-dist-repo</name>
<url>http://dist.org/</url>
</repository>
+ <site>
+ <id>maven-core-it</id>
+ <name>child-site</name>
+ <url>http://site.org/</url>
+ </site>
</distributionManagement>
<properties>
@@ -79,6 +84,7 @@
<projectIssueUrl>${issueManagement.url}</projectIssueUrl>
<projectCiUrl>${ciManagement.url}</projectCiUrl>
<projectDistRepoName>${distributionManagement.repository.name}</projectDistRepoName>
+ <projectDistSiteUrl>${distributionManagement.site.url}</projectDistSiteUrl>
<projectBuildOut>${build.outputDirectory}</projectBuildOut>
<projectSiteOut>${reporting.outputDirectory}</projectSiteOut>
<parentGroupId>${parent.groupId}</parentGroupId>