mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +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
14 lines
323 B
XML
14 lines
323 B
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-it2000</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>test</id>
|
|
<url>file:../test-repo</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|