mirror of https://github.com/apache/maven.git
[MNG-3124] test mailing-list inheritance behaviour
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1165008 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
25d7478809
commit
b3cd20f126
|
@ -26,6 +26,15 @@ under the License.
|
|||
<artifactId>child</artifactId>
|
||||
<version>12-SNAPSHOT</version>
|
||||
|
||||
<mailingLists>
|
||||
<!--mailingList> MNG-3124: no way to add a list to parent content, only full override
|
||||
<name>child</name>
|
||||
<post>post@mailing.list.com</post>
|
||||
<subscribe>subscribe@mailing.list.com</subscribe>
|
||||
<unsubscribe>unsubscribe@mailing.list.com</unsubscribe>
|
||||
</mailingList-->
|
||||
</mailingLists>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
|
|
@ -29,7 +29,16 @@ under the License.
|
|||
|
||||
<!-- name is not inherited, but description is -->
|
||||
<description>Model inheritance description</description>
|
||||
<url>http://www.apache.org/child/</url><!-- child's artifactId added to parent url -->
|
||||
<url>http://www.apache.org/child/</url><!-- child's artifactId appended to parent url -->
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>parent</name>
|
||||
<post>post@mailing.list.com</post>
|
||||
<subscribe>subscribe@mailing.list.com</subscribe>
|
||||
<unsubscribe>unsubscribe@mailing.list.com</unsubscribe>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
|
@ -31,6 +31,15 @@ under the License.
|
|||
<description>Model inheritance description</description>
|
||||
<url>http://www.apache.org/</url>
|
||||
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>parent</name>
|
||||
<post>post@mailing.list.com</post>
|
||||
<subscribe>subscribe@mailing.list.com</subscribe>
|
||||
<unsubscribe>unsubscribe@mailing.list.com</unsubscribe>
|
||||
</mailingList>
|
||||
</mailingLists>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
|
Loading…
Reference in New Issue