mirror of
https://github.com/apache/maven.git
synced 2025-02-06 01:59:04 +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
18 lines
271 B
Bash
Executable File
18 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Cleaning Test Repository"
|
|
|
|
rm -Rf test-repo
|
|
|
|
echo "Building Plugin"
|
|
|
|
cd plugin
|
|
|
|
m2 -DupdateReleaseInfo=true clean:clean deploy
|
|
|
|
echo "Building Project"
|
|
|
|
cd ../project
|
|
|
|
m2 --settings ./settings.xml --no-plugin-registry --check-plugin-latest it2000:test
|