mirror of https://github.com/apache/maven.git
Resolving: MNG-786...cannot reproduce, but since this is an old issue, I'll close it as fixed just in case. see it0075 for proof.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@292233 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dac96a1276
commit
b975bdad38
|
@ -197,6 +197,9 @@ it0073: Tests context passing between mojos in the same plugin.
|
|||
it0074: Test that plugin-level configuration instances are not nullified by
|
||||
execution-level configuration instances.
|
||||
|
||||
it0075: Verify that direct invocation of a mojo from the command line still
|
||||
results in the processing of modules included via profiles.
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
- generated sources
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
it0075
|
||||
it0074
|
||||
it0073
|
||||
it0072
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
sub1/.classpath
|
||||
sub2/.classpath
|
|
@ -0,0 +1 @@
|
|||
eclipse:eclipse
|
|
@ -0,0 +1,24 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-core-it0075-root</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>sub1</module>
|
||||
</modules>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>include-sub2</id>
|
||||
<activation>
|
||||
<property><name>user.name</name></property>
|
||||
</activation>
|
||||
|
||||
<modules>
|
||||
<module>sub2</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
|
@ -0,0 +1,2 @@
|
|||
rm sub1/.classpath
|
||||
rm sub2/.classpath
|
|
@ -0,0 +1,11 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-core-it0075-root</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>maven-core-it0075-sub1</artifactId>
|
||||
|
||||
</project>
|
|
@ -0,0 +1,6 @@
|
|||
package org.apache.maven.it0075;
|
||||
|
||||
public class Person
|
||||
{
|
||||
private String name;
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-core-it0075-root</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>maven-core-it0075-sub2</artifactId>
|
||||
|
||||
</project>
|
|
@ -0,0 +1,6 @@
|
|||
package org.apache.maven.it0075;
|
||||
|
||||
public class Person2
|
||||
{
|
||||
private String name;
|
||||
}
|
Loading…
Reference in New Issue