forked from self-xdsd/self-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·43 lines (34 loc) · 1.24 KB
/
release.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
43
#!/bin/bash
# Rultor release versioning script for Maven projects..
#
# It looks for the project’s version, which MUST respect the pattern
# [0-9]*\.[0-9]*\.[0-9]*-SNAPSHOT.
#
# What it does: updates the pom.xml version of the project according to
# the variable ${tag} provided to rultor. Specifically, it increments the
# 3rd digit and adds '-SNAPSHOT' to it.
#
# IMPORTANT:
# the given tag has to contain 3 numbers separated by dots!
#
# e.g. tag = 1.0.1 or tag = 3.2.53 will result in new versions of 1.0.2-SNAPSHOT
# or 3.2.54-SNAPSHOT
set -e
set -o pipefail
CURRENT_VERSION=$(grep -o '[0-9]*\.[0-9]*\.[0-9]*-SNAPSHOT' -m 1 pom.xml)
NUMBERS=($(echo $tag | grep -o -E '[0-9]+'))
echo "CURRENT VERSION IS"
echo $CURRENT_VERSION
NEXT_VERSION=${NUMBERS[0]}'.'${NUMBERS[1]}'.'$((${NUMBERS[2]}+1))'-SNAPSHOT'
echo "RELEASE VERSION IS"
echo $tag
echo "NEXT VERSION IS"
echo $NEXT_VERSION
mvn versions:set -DnewVersion=${tag}
mvn clean deploy -PsignArtifactsGpg,deployToGithubPackages --settings /home/r/settings.xml
sed -i "s/Web Application, version \`.*\`/Web Application, version \`${tag}\`/" README.md
mvn versions:set -DnewVersion=${NEXT_VERSION}
git commit -am "${NEXT_VERSION}"
git checkout master
git merge __rultor
git checkout __rultor