-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom-update.sh
142 lines (120 loc) · 4.26 KB
/
pom-update.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/bin/bash
#
# MIT License
#
# Copyright (c) 2023 Qingtian Wang
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# Function to display help menu
show_help() {
cat <<EOF
Usage: $0 [options]
Options:
-h, --help Show this help menu
-c, --check Check for available stable dependency and plugin updates
-u, --update Update dependencies and plugins to the latest stable releases
-a, --all Check and update dependencies and plugins
-n, --no-clean Do not remove backup files created by the Maven Versions plugin
Example:
$0 --check # Only check for updates
$0 --update # Only update dependencies/plugins
$0 --all # Check and update everything
EOF
exit 0
}
# Function to check if Maven is installed
check_maven() {
if ! command -v mvn &>/dev/null; then
echo "Error: Maven (mvn) is not installed or not found in PATH."
exit 1
fi
}
# Function to check for available updates
check_updates() {
echo "Checking for dependency updates (stable releases only)..."
mvn versions:display-dependency-updates -DallowSnapshots=false || {
echo "Error: Failed to check dependency updates."
exit 1
}
echo "Checking for plugin updates (stable releases only)..."
mvn versions:display-plugin-updates -DallowSnapshots=false || {
echo "Error: Failed to check plugin updates."
exit 1
}
}
# Function to update dependencies and plugins
update_dependencies() {
echo "Updating dependencies and plugins to the latest stable versions (including major versions)..."
# Ensure dependencies (including major versions) are updated
mvn versions:use-latest-versions -DgenerateBackupPoms=false || {
echo "Error: Failed to update dependencies."
exit 1
}
# Update dependencies managed in <properties>
mvn versions:update-properties -DgenerateBackupPoms=false || {
echo "Error: Failed to update property-managed dependencies."
exit 1
}
echo "Ensuring the latest plugin versions are set..."
mvn versions:use-latest-versions -Dincludes="org.apache.maven.plugins:*" -DgenerateBackupPoms=false || {
echo "Error: Failed to update Maven plugins."
exit 1
}
echo "All dependencies and plugins updated successfully."
}
# Function to clean up backup files
cleanup() {
echo "Cleaning up backup files created by the Maven Versions plugin..."
find . -name "pom.xml.versionsBackup" -delete
}
# Default flags
CHECK_ONLY=false
UPDATE_ONLY=false
CLEANUP=true
# Parse command-line arguments
while [[ "$#" -gt 0 ]]; do
case "$1" in
-h|--help) show_help ;;
-c|--check) CHECK_ONLY=true ;;
-u|--update) UPDATE_ONLY=true ;;
-a|--all) CHECK_ONLY=true; UPDATE_ONLY=true ;;
-n|--no-clean) CLEANUP=false ;;
*) echo "Unknown option: $1"; show_help ;;
esac
shift
done
# Ensure Maven is installed
check_maven
# Execute actions based on provided options
if [[ "$CHECK_ONLY" == "true" ]]; then
check_updates
fi
if [[ "$UPDATE_ONLY" == "true" ]]; then
update_dependencies
fi
if [[ "$UPDATE_ONLY" == "true" && "$CLEANUP" == "true" ]]; then
cleanup
fi
# If no options provided, show help
if [[ "$CHECK_ONLY" == "false" && "$UPDATE_ONLY" == "false" ]]; then
show_help
fi
echo "Done."
exit 0