-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathupdate-version.sh
executable file
·42 lines (35 loc) · 1.21 KB
/
update-version.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env -S bash -e
SCRIPTS_DIR="$(readlink -f ${BASH_SOURCE[0]} | xargs dirname)"
PROJECT=$1
NEW_VERSION=$2
# If set, Project version is inherited from parent (maven requires a different command)
VERSION_INHERITED=$3
WORKSPACE=${WORKSPACE:-'.'}
if [ -z "$PROJECT" ]; then
echo "ERROR: Project not supplied"
exit 1
fi
if [ -z "$NEW_VERSION" ]; then
echo "ERROR: New version argument not supplied"
exit 1
else
echo "Setting version to '$NEW_VERSION'";
fi
pushd $WORKSPACE
if [ -f "./gradlew" ]; then
# Gradle-based build
echo "hibernateVersion=$NEW_VERSION" > ./gradle/version.properties
else
# Maven-based build
source "$SCRIPTS_DIR/mvn-setup.sh"
if [ -f bom/pom.xml ] && [ "$PROJECT" == "ogm" ]; then
./mvnw -Prelocation clean versions:set -DnewVersion=$NEW_VERSION -DgenerateBackupPoms=false -f bom/pom.xml
elif [ -z "$VERSION_INHERITED" ]; then
./mvnw -Prelocation clean versions:set -DnewVersion=$NEW_VERSION -DgenerateBackupPoms=false
else
# Version inherited from parent
./mvnw -Prelocation versions:update-parent -DparentVersion="[1.0, $NEW_VERSION]" -DgenerateBackupPoms=false -DallowSnapshots=true
./mvnw -Prelocation -N versions:update-child-modules -DgenerateBackupPoms=false
fi
fi
popd