mirror of
https://github.com/apache/maven.git
synced 2025-02-08 19:15:12 +00:00
o Added --fail-fast --fail-at-end --fail-never CLI options, with appropriate summary and exclusion of dependent projects from the build when --fail-at-end is specified. Also, implemented it0046 and it1011 to test it. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@227490 13f79535-47bb-0310-9956-ffa450edef68
25 lines
582 B
XML
25 lines
582 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0046</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<artifactId>maven-core-it0046-subproject</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<configuration>
|
|
<fail>true</fail>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</model>
|