Skip to content

Commit

Permalink
Fix RevApi configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jul 10, 2022
1 parent bb0f8f5 commit f7f8f19
Showing 1 changed file with 36 additions and 17 deletions.
53 changes: 36 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -637,9 +637,30 @@
<configuration>
<failBuildOnProblemsFound>true</failBuildOnProblemsFound>
<checkDependencies>true</checkDependencies>
<newVersion>${project.version}</newVersion>
<failOnUnresolvedArtifacts>true</failOnUnresolvedArtifacts>
<pipelineConfiguration>
<transformBlocks>
<block>
<item>manually-vetted</item>
<item>revapi.versions</item>
</block>
</transformBlocks>
</pipelineConfiguration>
<analysisConfiguration>
<revapi.differences id="manually-vetted">
<attachments>
<vetted>ok</vetted>
</attachments>
<differences>
<item>
<ignore>true</ignore>
<regex>true</regex>
<code>java.annotation.*</code>
<annotationType>edu.umd.cs.findbugs.annotations.*</annotationType>
<justification>Annotation should be safe to change</justification>
</item>
</differences>
</revapi.differences>
<revapi.reporter.json>
<minSeverity>NON_BREAKING</minSeverity>
<minCriticality>documented</minCriticality>
Expand All @@ -650,23 +671,21 @@
</revapi.reporter.json>
<revapi.versions>
<enabled>true</enabled>
<strictSemver>false</strictSemver>
</revapi.versions>
<revapi.differences>
<item>
<code>java.annotation.removed</code>
<annotation>@edu.umd.cs.findbugs.annotations.Nullable</annotation>
<justification>Annotation should be save to change.</justification>
</item>
<item>
<code>java.annotation.added</code>
<annotation>@edu.umd.cs.findbugs.annotations.CheckForNull</annotation>
<justification>Annotation should be save to change.</justification>
</item>
<item>
<code>java.annotation.added</code>
<annotation>@edu.hm.hafner.util.Generated</annotation>
<justification>Annotation should be save to change.</justification>
</item>
<revapi.differences id="manually-vetted">
<attachments>
<vetted>ok</vetted>
</attachments>
<differences>
<item>
<ignore>true</ignore>
<regex>true</regex>
<code>java.annotation.*</code>
<annotationType>edu.umd.cs.findbugs.annotations.*</annotationType>
<justification>Annotation should be safe to change</justification>
</item>
</differences>
</revapi.differences>
</analysisConfiguration>
</configuration>
Expand Down

0 comments on commit f7f8f19

Please sign in to comment.