diff --git a/pom.xml b/pom.xml
index 5cf9df0..fedf211 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.jenkins-ci.plugins
plugin
- 4.76
+ 4.86
@@ -17,7 +17,7 @@
Parses the console log generated by a build
- 2.387.3
+ 2.440.3
2.5.1
3.3
@@ -75,8 +75,8 @@
io.jenkins.tools.bom
- bom-2.387.x
- 2543.vfb_1a_5fb_9496d
+ bom-2.440.x
+ 3234.v5ca_5154341ef
import
pom
@@ -139,7 +139,6 @@
org.jenkins-ci.main
maven-plugin
- 3.23
test
diff --git a/src/main/java/hudson/plugins/logparser/LogParserPublisher.java b/src/main/java/hudson/plugins/logparser/LogParserPublisher.java
index 3bfec12..089475d 100755
--- a/src/main/java/hudson/plugins/logparser/LogParserPublisher.java
+++ b/src/main/java/hudson/plugins/logparser/LogParserPublisher.java
@@ -1,5 +1,6 @@
package hudson.plugins.logparser;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import hudson.Extension;
import hudson.FilePath;
import hudson.Launcher;
@@ -53,6 +54,7 @@ public class LogParserPublisher extends Recorder implements SimpleBuildStep, Ser
* workspace root.
*/
@Deprecated
+ @SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Backwards compatibility")
private LogParserPublisher(final boolean unstableOnWarning,
final boolean failBuildOnError, final boolean showGraphs,
final String parsingRulesPath, final boolean useProjectRule,