[Project] Changed how version is detected for bundle creation

This commit is contained in:
Robert von Burg 2016-07-05 10:35:22 +02:00
parent f6bb3b16e2
commit 8298b30d42
1 changed files with 5 additions and 5 deletions

View File

@ -15,11 +15,11 @@ bundle_name="${projectName}-${projectVersion}"
echo "INFO: Creating bundle ${bundle_name}"
# Create all needed packages
#echo "INFO: Building projects..."
#if ! mvn -DskipTests clean package ; then
# echo "ERROR: Failed to build packages!"
# exit 1
#fi
echo "INFO: Building projects..."
if ! mvn -DskipTests clean package ; then
echo "ERROR: Failed to build packages!"
exit 1
fi
# Make sure the work directory exists
if [ -d "${workDir}" ] ; then