We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bff28e commit 311bb9cCopy full SHA for 311bb9c
src/build/find-transitive-eclipse-updates.sh
@@ -46,6 +46,10 @@ for x in "${deps[@]}"; do
46
depGroupId=$(echo "$x" | cut -f1 -d:)
47
depArtifactId=$(echo "$x" | cut -f2 -d:)
48
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
53
cat >>"$workfile" <<EOF
54
<dependency>
55
<!-- $depComment -->
0 commit comments