Skip to content

Commit 17eea7b

Browse files
committed
Revert dependency bump that breaks Java 11 build
Dependabot changed `error-prone` library to 2.36.0 again in nitrite#1089, re-breaking the fix that was included in nitrite#1083. This reverts commit 6902df0.
1 parent 7b90d63 commit 17eea7b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ updates:
55
schedule:
66
interval: daily
77
target-branch: main
8+
ignore:
9+
# Ignore minor version updates for dependencies with group ID "com.google.errorprone"
10+
- dependency-name: "com.google.errorprone:*"
11+
update-types: [ "version-update:semver-minor" ]
812

913
- package-ecosystem: "github-actions"
1014
directory: "/"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<threetenbp.version>1.7.0</threetenbp.version>
8282

8383
<!-- Error Prone version > 2.31.0 can't run on JDK 11. see https://errorprone.info/docs/installation -->
84-
<error-prone.version>2.36.0</error-prone.version>
84+
<error-prone.version>2.31.0</error-prone.version>
8585

8686
<jacoco.version>0.8.12</jacoco.version>
8787
<surefire.version>3.5.2</surefire.version>

0 commit comments

Comments
 (0)