mirror of https://github.com/apache/maven.git
add reports and a comment on why this is all too much but nevertheless necessary for now
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@191751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
158ab5e513
commit
8ccb310ca0
|
@ -44,6 +44,9 @@ ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||||
)
|
)
|
||||||
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||||
|
|
||||||
|
# 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 "-----------------------------------------------------------------------"
|
||||||
echo " Rebuilding maven2 plugins ... "
|
echo " Rebuilding maven2 plugins ... "
|
||||||
|
@ -56,6 +59,18 @@ ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||||
)
|
)
|
||||||
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||||
|
|
||||||
|
(
|
||||||
|
echo "-----------------------------------------------------------------------"
|
||||||
|
echo " Rebuilding maven2 reports ... "
|
||||||
|
echo "-----------------------------------------------------------------------"
|
||||||
|
|
||||||
|
cd maven-reports
|
||||||
|
# update the release info to ensure these versions get used in the integration tests
|
||||||
|
m2 --no-plugin-updates --batch-mode -DupdateReleaseInfo=true -e $ARGS clean:clean install
|
||||||
|
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||||
|
)
|
||||||
|
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
|
||||||
|
|
||||||
(
|
(
|
||||||
cd ./maven-core-it
|
cd ./maven-core-it
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in New Issue