mirror of https://github.com/apache/maven.git
seems to be choking on the bootstrap-built plugin-plugin in the reactor, try building manually first
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321131 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
65bd735849
commit
6b333b6201
|
@ -47,14 +47,21 @@ ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
|||
)
|
||||
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||
|
||||
echo "-----------------------------------------------------------------------"
|
||||
echo " Rebuilding maven2 plugins ... "
|
||||
echo "-----------------------------------------------------------------------"
|
||||
|
||||
# I Really Don't want to be rebuilding these (Especially the reports) every time, but
|
||||
# until we regularly push them to the repository and the integration tests rely on
|
||||
# some of these plugins, there is no choice
|
||||
(
|
||||
echo "-----------------------------------------------------------------------"
|
||||
echo " Rebuilding maven2 plugins ... "
|
||||
echo "-----------------------------------------------------------------------"
|
||||
# Build plugin plugin first, it seems to choke on the version built by the bootstrap
|
||||
cd maven-plugins/maven-plugin-plugin
|
||||
|
||||
m2 --no-plugin-registry --batch-mode --fail-at-end -e $ARGS clean:clean install
|
||||
)
|
||||
|
||||
(
|
||||
cd maven-plugins
|
||||
# update the release info to ensure these versions get used in the integration tests
|
||||
m2 --no-plugin-registry --batch-mode --fail-at-end -e $ARGS clean:clean install
|
||||
|
|
Loading…
Reference in New Issue