Skip to content
Snippets Groups Projects
Commit 3daaba4b authored by bow's avatar bow
Browse files

Merge branch 'feature-bump_version' into 'develop'

Feature bump version

see #56

See merge request !40
parents 0c137085 2fc13974
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#
# Copyright (c) 2014 Leiden University Medical Center - Sequencing Analysis Support Core <sasc@lumc.nl>
# @author Peter van 't Hof <p.j.van_t_hof@lumc.nl>
#
# Script used to change version in pom files for Biopet project
#
DIR=`readlink -f \`dirname $0\``
if [ ! $1 ] ; then
echo "usage: "`basename $0`" <version>"
exit 1
fi
mvn -f $DIR/pom.xml versions:set -DnewVersion=$1 -DgenerateBackupPoms=false
mvn -f $DIR/biopet-framework/pom.xml versions:set -DnewVersion=$1 -DgenerateBackupPoms=false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment