[Project] Changed how version is detected for bundle creation

This commit is contained in:
Robert von Burg 2016-07-05 10:32:31 +02:00
parent 188082b800
commit f6bb3b16e2
1 changed files with 8 additions and 8 deletions

View File

@ -1,18 +1,18 @@
#!/bin/bash #!/bin/bash
projectName=strolch_bundle
DIST_STROLCH="/var/www/eitch/strolch.li/dist/snapshot"
DEPLOY_SERVER="hosting.eitchnet.ch"
ROOT="$(cd ${0%/*} ; pwd)"
workDir="${ROOT}/target/${bundle_name}"
projectVersion=$(grep -m 1 "<version>" pom.xml | tr '<>' '|' | cut -d '|' -f 3) projectVersion=$(grep -m 1 "<version>" pom.xml | tr '<>' '|' | cut -d '|' -f 3)
if [ $? != 0 ] ; then if [ $? != 0 ] ; then
echo "ERROR: Failed to parse version!" echo "ERROR: Failed to parse version!"
fi fi
echo "INFO: Project version is ${projectVersion}"
projectName=strolch_bundle
bundle_name="${projectName}-${projectVersion}" bundle_name="${projectName}-${projectVersion}"
DIST_STROLCH="/var/www/eitch/strolch.li/dist/snapshot"
DEPLOY_SERVER="hosting.eitchnet.ch" echo "INFO: Creating bundle ${bundle_name}"
ROOT="${PWD}"
workDir="${ROOT}/target/${bundle_name}"
# Create all needed packages # Create all needed packages
#echo "INFO: Building projects..." #echo "INFO: Building projects..."