Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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