[Project] fixed setVersion.sh to properly versionize eitchnet projects

This commit is contained in:
Robert von Burg 2015-03-05 22:43:31 +01:00
parent c770550d40
commit 5b97cb3462
3 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit b5fac57dd8dfb14b1836c563c70ef87a21ef50e7
Subproject commit 83740b59e21e356ac3f4e3439cd038b7f4b9a073

@ -1 +1 @@
Subproject commit 7b6282dd2395ddc760ac89f7ebf33fc9ea4c1d88
Subproject commit 2371cd78533b34484b050fd01fbfe2044bd0c94c

View File

@ -119,6 +119,9 @@ for project in ch.* ; do
if ! xmlstarlet ed --ps -L -N my=http://maven.apache.org/POM/4.0.0 -u "/my:project/my:parent/my:version" -v ${new_version} pom.xml 2>/dev/null ; then
fail "${root}/${project}/pom.xml"
fi
if ! xmlstarlet ed --ps -L -N my=http://maven.apache.org/POM/4.0.0 -u "/my:project/my:properties/my:eitchnet.utils.version" -v ${new_version} pom.xml 2>/dev/null ; then
fail "${root}/pom.xml"
fi
done