2 ###############################################################################
3 # Copyright (c) 2015 Ericsson, EfficiOS Inc. and others
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Eclipse Public License v1.0
7 # which accompanies this distribution, and is available at
8 # http://www.eclipse.org/legal/epl-v10.html
11 # Marc-André Laperle - Initial version
12 # Alexandre Montplaisir - Initial version
13 ###############################################################################
15 # Point ourselves to the script's directory (so it can be run "out-of-tree")
16 DIR
=$
( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
17 output
=`mvn versions:display-plugin-updates -U -f $DIR/../../pom.xml`
19 #filter only updates and show unique
20 summary
=`echo "${output}" | grep "\\->" | sort | uniq`
21 echo -e "Summary:\n${summary}"
23 #remove empty lines and count lines
24 outdatedNb
=`echo "${summary}" | sed '/^\s*$/d' | wc -l`
25 echo Number of outdated plugins
: "${outdatedNb}"