mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
f437fb5dc2
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
20 lines
312 B
XML
20 lines
312 B
XML
<settings>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>test-repo</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>test-repo</id>
|
|
<url>file:../../test-repo</url>
|
|
</repository>
|
|
</repositories>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<activeProfiles>
|
|
<activeProfile>test-repo</activeProfile>
|
|
</activeProfiles>
|
|
|
|
</settings>
|