
* Update issue templates * Run unit tests in alphabetical order (#244) * fix: unit tests VIVO-2003 (#245) * updates to outdated urls Co-authored-by: Dragan Ivanovic <chenejac@uns.ac.rs> Co-authored-by: Brian Lowe <brian@ontocale.com> Co-authored-by: Georgy Litvinov <git@litvinovg.pro>
12 lines
242 B
Bash
Executable file
12 lines
242 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo 'New version number required eg. 1.12.0-RC1'
|
|
exit 1
|
|
fi
|
|
|
|
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1
|
|
cd installer
|
|
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1
|
|
cd ..
|