Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump maven-plugin-tools.version from 3.6.4 to 3.7.0 #392

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<gitHubRepo>jenkinsci/${project.artifactId}</gitHubRepo>
<aether.version>1.1.0</aether.version>
<maven.version>3.8.6</maven.version>
<maven-plugin-tools.version>3.6.4</maven-plugin-tools.version>
<maven-plugin-tools.version>3.7.0</maven-plugin-tools.version>
<plexus-containers.version>2.1.1</plexus-containers.version>
<aether.version>1.1.0</aether.version>
</properties>
Expand Down
11 changes: 7 additions & 4 deletions src/spotbugs/excludesFilter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
<Bug pattern="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"/>
</Or>
</Match>
<Match>
<!-- Ignore autogenerated class -->
<And>
<Bug pattern="XXE_DOCUMENT"/>
<Class name="org.jenkins_ci.tools.maven_hpi_plugin.HelpMojo"/>
</And>
</Match>
<!--
Here lies technical debt. Exclusions in this section have not yet been triaged. When working on
on this section, pick an exclusion to triage, then:
Expand Down Expand Up @@ -78,10 +85,6 @@
<Bug pattern="VA_FORMAT_STRING_USES_NEWLINE"/>
<Class name="org.jenkinsci.maven.plugins.hpi.TagLibInterfaceGeneratorMojo"/>
</And>
<And>
<Bug pattern="XXE_DOCUMENT"/>
<Class name="org.jenkinsci.maven.plugins.hpi.HelpMojo"/>
</And>
</Or>
</Match>
</FindBugsFilter>