mirror of
https://github.com/apache/maven.git
synced 2025-02-08 11:05:37 +00:00
o Separated profile injection logic from the inheritance assembly. While they look similar superficially, the merge-out vs. merge-in semantics make it pretty complex to put this logic together in the same methods. It's easier to understand what's going on if they remain similar but separate code... o Added it0058 to test that application of a profile from settings.xml doesn't transport module lists from POM to POM inside of a reactor build. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@239918 13f79535-47bb-0310-9956-ffa450edef68
19 lines
468 B
XML
19 lines
468 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0058</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<artifactId>maven-core-it0058-subproject</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|