mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
o Changed the profile activation in it0075 to use a system property which is not always present o Added projecthelp:active-profiles, package, and clean:clean to the goals list, in case it was only happening with the clean plugin o Fixed the projecthelp mojos to be aggregators where appropriate o Changed the ordering of modules in the profile injector (used to be that profile modules were prepended; now, they're appended) NOTE: I still cannot reproduce the described behavior. Dan: Am I missing something WRT the test setup? I changed the activation trigger to be non-inherent, and I'm not using a boolean string to trigger the profile. What am I doing wrong?? git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@292781 13f79535-47bb-0310-9956-ffa450edef68
27 lines
514 B
XML
27 lines
514 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0075-root</artifactId>
|
|
<version>1.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>sub1</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>include-sub2</id>
|
|
<activation>
|
|
<property>
|
|
<name>activate</name>
|
|
</property>
|
|
</activation>
|
|
|
|
<modules>
|
|
<module>sub2</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|