Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiraj Modi2019-03-08 11:20:58 +0000
committerNiraj Modi2019-03-08 11:20:58 +0000
commit476453a622cc46a078cb6d5d1bc66a5e2c2ba547 (patch)
tree09f68ef5b68b4c67f38c694884f3013a279a4397 /scripts
parent21493a82fd7fba5fa882140445e4e716a125cbfa (diff)
downloadeclipse.platform.releng.aggregator-476453a622cc46a078cb6d5d1bc66a5e2c2ba547.tar.gz
eclipse.platform.releng.aggregator-476453a622cc46a078cb6d5d1bc66a5e2c2ba547.tar.xz
eclipse.platform.releng.aggregator-476453a622cc46a078cb6d5d1bc66a5e2c2ba547.zip
Bug 545208 - Script for product version update in complete Eclipse code
base. Change-Id: I48100a39a37e4acbf5f306afe49e290886ce3258 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/updateProductVersion.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/updateProductVersion.sh b/scripts/updateProductVersion.sh
new file mode 100755
index 000000000..d696e5549
--- /dev/null
+++ b/scripts/updateProductVersion.sh
@@ -0,0 +1,6 @@
+#Before running this script configure the source and target POM versions correctly
+cd ..
+find `pwd` -name pom.xml -exec sed -i 's/4.11.0/4.12.0/g' {} \;
+find `pwd` -name MANIFEST.MF -exec sed -i 's/4.11.0/4.12.0/g' {} \;
+find `pwd` -name *.product -exec sed -i 's/4.11.0/4.12.0/g' {} \;
+find `pwd` -name feature.xml -exec sed -i 's/4.11.0/4.12.0/g' {} \;

Back to the top