mirror of
https://github.com/apache/maven.git
synced 2025-02-06 18:18:48 +00:00
o Added '-f' CLI option, to allow use of non-standard pom files, or spawning of a build from outside of the project dir. o Added preferential processing of release-pom.xml over pom.xml if it exists (assumes that the current checkout is a release of the software) o Moved all file discovery from MavenCli to DefaultMaven, to allow embedders to have access to this logic. o Modified MavenExecutionRequest to add a flag for reactor-activation and the name of a non-standard pom to use, if appropriate. o Removed getFiles() and getProjectFiles() from MavenExecutionRequest, since file discovery is now done in the DefaultMaven. o Added integration tests to check preference of release-pom.xml in standalone and '-r' mode o Added integration tests to check usage of '-f' option within and outside of the project directory o Added processing for cli-options.txt to maven-core-it-verifier (Verifier.java) to allow specification of '-f' and '-r' in tests NOTE: the release plugin still doesn't correctly remove the release-pom.xml from HEAD/trunk, since I don't have access to the SCM remove command from maven-scm. I'm waiting for Emmanuel to finish some API changes before moving to the new maven-scm version, and implementing this final step. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@225226 13f79535-47bb-0310-9956-ffa450edef68
17 lines
409 B
XML
17 lines
409 B
XML
<model>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-core-it0037</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</model>
|