Skip to content

Commit

Permalink
Update src/build/find-transitive-eclipse-updates.sh
Browse files Browse the repository at this point in the history
Update transitive dependency updater script so that PR #691 doesn't get
reverted.
  • Loading branch information
ctubbsii committed Feb 6, 2023
1 parent 2bff28e commit 311bb9c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/build/find-transitive-eclipse-updates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ for x in "${deps[@]}"; do
depGroupId=$(echo "$x" | cut -f1 -d:)
depArtifactId=$(echo "$x" | cut -f2 -d:)
depVersion=$(echo "$x" | cut -f4 -d:)
if [[ $depArtifactId = 'osgi.annotation' ]] && [[ $depVersion = '8.0.1' ]]; then
# explicit override to avoid reverting https://github.com/revelc/formatter-maven-plugin/pull/691
depVersion='8.1.0'
fi
cat >>"$workfile" <<EOF
<dependency>
<!-- $depComment -->
Expand Down

0 comments on commit 311bb9c

Please sign in to comment.