blob: 1978e33dc651af4c6d74d7dd752f09f171f1c9b6 (
plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#!/bin/bash
#
# ============LICENSE_START================================================
# ONAP
# =========================================================================
# Copyright (C) 2021-2022 Nordix Foundation.
# =========================================================================
# 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.
# ============LICENSE_END==================================================
#
set -e
SCRIPT_NAME=`basename $0`
usage()
{
echo ""
echo "$SCRIPT_NAME - update the parent reference in a POM file"
echo ""
echo " usage: $SCRIPT_NAME [-options]"
echo ""
echo " options"
echo " -h - this help message"
echo " -f pom_file - the POM file to update"
echo " -g group_id - the parent group ID"
echo " -a artifact_id - the parent artifact ID"
echo " -v version - the parent version"
exit 255;
}
while getopts "hf:g:a:v:" opt
do
case $opt in
h)
usage
;;
f)
pom_file=$OPTARG
;;
g)
group_id=$OPTARG
;;
a)
artifact_id=$OPTARG
;;
v)
version=$OPTARG
;;
\?)
usage
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
esac
done
if [ $OPTIND -eq 1 ]
then
echo "no arguments were specified"
usage
fi
if [ ! -f "$pom_file" ]
then
echo "POM file '$pom_file' specified on '-f' flag not found"
exit 1
fi
if [ -z "$group_id" ]
then
echo "group ID not specified on '-g' flag"
exit 1
fi
if [ -z "$artifact_id" ]
then
echo "artifact ID not specified on '-a' flag"
exit 1
fi
if [ -z "$version" ]
then
echo "version not specified on '-v' flag"
exit 1
fi
pom_lines=`wc -l $pom_file | sed 's/^[ \t]*//' | cut -f1 -d' '`
parent_start_line=`grep -n '^[\t ]*<parent>[\t*]*$' $pom_file | cut -f1 -d':'`
parent_end_line=`grep -n '^[\t ]*</parent>[\t*]*$' $pom_file | cut -f1 -d':'`
pom_head_lines=$((parent_start_line-1))
pom_tail_lines=$((pom_lines-parent_end_line))
pom_temp_file=$(mktemp)
head -$pom_head_lines $pom_file > $pom_temp_file
echo " <parent>" >> $pom_temp_file
echo " <groupId>$group_id</groupId>" >> $pom_temp_file
echo " <artifactId>$artifact_id</artifactId>" >> $pom_temp_file
echo " <version>$version</version>" >> $pom_temp_file
echo " <relativePath />" >> $pom_temp_file
echo " </parent>" >> $pom_temp_file
tail -$pom_tail_lines $pom_file >> $pom_temp_file
mv $pom_temp_file $pom_file
|