From: Marc-Andre Laperle Date: Thu, 3 Mar 2016 07:27:38 +0000 (-0500) Subject: Force check remote updates when checking for new plugin versions X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=715ae22880eebf75baed296e4f7c37f1d6e11f00;p=deliverable%2Ftracecompass.git Force check remote updates when checking for new plugin versions Without the -U option, the plugin versions could be cached from a while ago. This partly explains why the Hudson build would not display the new updates. (Also the proxy settings had to be fixed) Change-Id: Ib17d14d058b5d8f1894c61448fd3192972630291 Signed-off-by: Marc-Andre Laperle Reviewed-on: https://git.eclipse.org/r/67721 Reviewed-by: Hudson CI Reviewed-by: Alexandre Montplaisir --- diff --git a/releng/check_mvn_plugin_versions.sh b/releng/check_mvn_plugin_versions.sh index 88eee47739..fb4d75173a 100755 --- a/releng/check_mvn_plugin_versions.sh +++ b/releng/check_mvn_plugin_versions.sh @@ -14,7 +14,7 @@ # Point ourselves to the script's directory (so it can be run "out-of-tree") DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) -output=`mvn versions:display-plugin-updates -f $DIR/../pom.xml` +output=`mvn versions:display-plugin-updates -U -f $DIR/../pom.xml` #filter only updates and show unique summary=`echo "${output}" | grep "\\->" | sort | uniq`