forked from qos-ch/logback-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.sh
executable file
·67 lines (60 loc) · 2.04 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/sh -e
#
# Copyright (C) 2014 The logback-extensions developers ([email protected])
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# -----------------------------------------------------------------------------
# This script performs a logback-extensions release:
# * sets the version (removes SNAPSHOT suffix from current version, and bumps
# to the next SNAPSHOT version when release is finished)
# * tags the source in GitHub (e.g., with "v_1.0.2")
# * deploys the signed jars to Sonatype
# * updates the README.md with the current version info
#
# Usage:
# ./release.sh [--dryrun]
#
# -----------------------------------------------------------------------------
version=$(mvn help:evaluate -Dexpression=project.version | grep '^[^[]')
version=${version%-SNAPSHOT}
outdir=$PWD/target
readme=$PWD/README.md
if [ "x$1" == "x--dryrun" ]; then
echo "[dryrun] just a test!"
dryrun=true
fi
echo "Starting release process for logback-extensions ${version}..."
mvnDryRun=
if [ ${dryrun} ]; then
mvnDryRun=-DdryRun=true
fi
mvn release:clean
mvn -Dtag=v_${version} $mvnDryRun release:prepare
mvn -Dtag=v_${version} $mvnDryRun release:perform
# Update the version number in the README
echo "Updating README.md..."
gsed -i -e "s/[0-9]\+.[0-9]\+.[0-9]\+/${version}/g" ${readme}
if [ ! ${dryrun} ]; then
git add ${readme}
git commit -m "Update README for v_${version}"
else
echo '[dryrun] skip commit README...'
fi
if [ ! ${dryrun} ]; then
echo Done. Push changes to GitHub!!
else
echo Done...just a dryrun!!
echo Cleaning up...
mvn release:clean
fi