diff options
author | Sven Gothel <[email protected]> | 2012-11-06 20:57:33 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-11-06 21:16:30 +0100 |
commit | bb3bb1247fb1fab05a85302dd9e5d57b769fcdbf (patch) | |
tree | 370c3efa0d2e4229feaa4ed8fdf8ad64d8660838 /maven/make-poms.sh | |
parent | 4fd161240a1616382c1b1f744bf31d2a9489437e (diff) |
Prepare repo merge
Diffstat (limited to 'maven/make-poms.sh')
-rwxr-xr-x | maven/make-poms.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/maven/make-poms.sh b/maven/make-poms.sh new file mode 100755 index 0000000..25b29cd --- /dev/null +++ b/maven/make-poms.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +if [ $# -ne 1 ] +then + echo "make-poms: usage: version" 1>&2 + exit 1 +fi + +VERSION="$1" +shift + +PROJECTS=`cat make-projects.txt | awk -F: '{print $1}'` || exit 1 + +for PROJECT in ${PROJECTS} +do + echo "make-poms: info: generating pom for ${PROJECT}" 1>&2 + "./${PROJECT}.pom.sh" "${VERSION}" > "${PROJECT}.pom.tmp" || exit 1 + mv "${PROJECT}.pom.tmp" "${PROJECT}.pom" || exit 1 +done + |