Skip to content

Commit 311bb9c

Browse files
committed
Update src/build/find-transitive-eclipse-updates.sh
Update transitive dependency updater script so that PR #691 doesn't get reverted.
1 parent 2bff28e commit 311bb9c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/build/find-transitive-eclipse-updates.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ for x in "${deps[@]}"; do
4646
depGroupId=$(echo "$x" | cut -f1 -d:)
4747
depArtifactId=$(echo "$x" | cut -f2 -d:)
4848
depVersion=$(echo "$x" | cut -f4 -d:)
49+
if [[ $depArtifactId = 'osgi.annotation' ]] && [[ $depVersion = '8.0.1' ]]; then
50+
# explicit override to avoid reverting https://github.com/revelc/formatter-maven-plugin/pull/691
51+
depVersion='8.1.0'
52+
fi
4953
cat >>"$workfile" <<EOF
5054
<dependency>
5155
<!-- $depComment -->

0 commit comments

Comments
 (0)