Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2013-11-06 19:31:30 +0000
committerAlexander Kurtakov2013-11-06 20:17:29 +0000
commitdaf161f61ea83cc44dafaab8d0f0c69fe31a2db8 (patch)
treef788c9397502973a02dbdcfeb255f53732591d8d /valgrind/change_ver.sh
parent904450377466605709d323d2f5f5d4b6c6a62c06 (diff)
downloadorg.eclipse.linuxtools-daf161f61ea83cc44dafaab8d0f0c69fe31a2db8.tar.gz
org.eclipse.linuxtools-daf161f61ea83cc44dafaab8d0f0c69fe31a2db8.tar.xz
org.eclipse.linuxtools-daf161f61ea83cc44dafaab8d0f0c69fe31a2db8.zip
Remove useless prerequisite from child poms.
The parent pom already sets that we require at least maven 3 so there is no need to duplicate it. The change_ver.sh scripts are remnant from the past when using tycho for changing versions was not well known. Change-Id: Ia3d26a3c7975a0b877dcb04e4b016992ca125c18 Reviewed-on: https://git.eclipse.org/r/18153 Tested-by: Hudson CI Reviewed-by: Alexander Kurtakov <akurtako@redhat.com> IP-Clean: Alexander Kurtakov <akurtako@redhat.com> Tested-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'valgrind/change_ver.sh')
-rwxr-xr-xvalgrind/change_ver.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/valgrind/change_ver.sh b/valgrind/change_ver.sh
deleted file mode 100755
index 6d58f6307f..0000000000
--- a/valgrind/change_ver.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-if [ $# -ne 2 ]; then
- echo "usage: $0 old_ver new_ver"
- exit 1
-fi
-old_ver=$(echo "$1" | sed 's/\./\\./g')
-new_ver=$(echo "$2" | sed 's/\./\\./g')
-
-find -name 'pom.xml' -o -name 'feature.xml' -o -name 'MANIFEST.MF' | xargs sed -i "s/$old_ver/$new_ver/g"

Back to the top