From 715ae22880eebf75baed296e4f7c37f1d6e11f00 Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Thu, 3 Mar 2016 02:27:38 -0500 Subject: [PATCH] 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 --- releng/check_mvn_plugin_versions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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` -- 2.34.1