Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/@unreleased/pr-2460.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type: fix
fix:
description: Suppress the `JavaxInjectOnAbstractMethod` check for projects that
apply `java-gradle-plugin`.
links:
- https://github.com/palantir/gradle-baseline/pull/2460
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ private static void applyToJavaProject(Project project) {
errorProneOptions.check("PreferSafeLogger", CheckSeverity.OFF);
errorProneOptions.check("PreferSafeLoggingPreconditions", CheckSeverity.OFF);
errorProneOptions.check("PreconditionsConstantMessage", CheckSeverity.OFF);
errorProneOptions.check("JavaxInjectOnAbstractMethod", CheckSeverity.OFF);
}));
});
}
Expand Down