mirror of
https://github.com/apache/maven.git
synced 2025-02-12 21:15:39 +00:00
o Modified the PluginMappingDeployMojo in maven-plugin-plugin to always deploy the plugins.xml regardless. This may be a bit heavy, but it avoids the snag with the plugins.xml being detected in the local repository after the install phase runs...plugin mappings weren't making it to the repository during deploy. o Added a new series of IT: it2xxx which will be tests that require more than a single maven invocation, and will be run via shell script, at least for now. This one builds and deploys a plugin, then attempts to use the plugin by referencing the prefix mapping in the (non-central) remote repository. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@231058 13f79535-47bb-0310-9956-ffa450edef68
23 lines
599 B
XML
23 lines
599 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.plugins.it2000</groupId>
|
|
<artifactId>maven-it2000-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>2.0-beta-1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>local</id>
|
|
<url>file:../test-repo</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</project>
|