Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/xsl/groupId.sh')
-rwxr-xr-xscripts/xsl/groupId.sh47
1 files changed, 0 insertions, 47 deletions
diff --git a/scripts/xsl/groupId.sh b/scripts/xsl/groupId.sh
deleted file mode 100755
index cdd08a6e9..000000000
--- a/scripts/xsl/groupId.sh
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/bash
-
-ECLIPSE=/opt/local/e4-self/R421/eclipse/eclipse
-
-if [ $# -gt 0 ]; then
- ECLIPSE="$1" ; shift
-fi
-
-find * -name pom.xml -print0 | xargs -0 grep eclipse-plugin | cut -f1 -d: | sort -u >/tmp/t1_$$.txt
-
-for POM in $( cat /tmp/t1_$$.txt ); do
- $ECLIPSE -noSplash \
- -application org.eclipse.ant.core.antRunner -v \
- -buildfile run-xsl.xml \
- -Dfile.sheet="fix-pom.xsl" \
- -Dfile.in="$(pwd)/$POM" \
- -Dfile.out="$(pwd)/${POM}.out"
- xmllint --format "${POM}.out" >"${POM}"
- rm "${POM}.out"
-done
-
-find * -name pom.xml -print0 | xargs -0 grep eclipse-feature | cut -f1 -d: | sort -u >/tmp/t1_$$.txt
-
-for POM in $( cat /tmp/t1_$$.txt ); do
- $ECLIPSE -noSplash \
- -application org.eclipse.ant.core.antRunner -v \
- -buildfile run-xsl.xml \
- -Dfile.sheet="fix-feature-pom.xsl" \
- -Dfile.in="$(pwd)/$POM" \
- -Dfile.out="$(pwd)/${POM}.out"
- xmllint --format "${POM}.out" >"${POM}"
- rm "${POM}.out"
-done
-
-
-find * -name pom.xml -print0 | xargs -0 grep eclipse-test-plugin | cut -f1 -d: | sort -u >/tmp/t1_$$.txt
-
-for POM in $( cat /tmp/t1_$$.txt ); do
- $ECLIPSE -noSplash \
- -application org.eclipse.ant.core.antRunner -v \
- -buildfile run-xsl.xml \
- -Dfile.sheet="fix-pom.xsl" \
- -Dfile.in="$(pwd)/$POM" \
- -Dfile.out="$(pwd)/${POM}.out"
- xmllint --format "${POM}.out" >"${POM}"
- rm "${POM}.out"
-done

Back to the top