Skip to content

Commit

Permalink
Merge pull request #552 from DJCoding/revApi
Browse files Browse the repository at this point in the history
Update RevApi Config
  • Loading branch information
uhafner authored May 24, 2022
2 parents 76eb4a4 + 25461ce commit bf4c1f5
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
<nullaway.version>0.9.7</nullaway.version>
<revapi-maven-plugin.version>0.14.6</revapi-maven-plugin.version>
<revapi-java.version>0.26.1</revapi-java.version>
<revapi-reporter-json-version>0.4.5</revapi-reporter-json-version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
Expand Down Expand Up @@ -626,13 +627,30 @@
<artifactId>revapi-java</artifactId>
<version>${revapi-java.version}</version>
</dependency>
<dependency>
<groupId>org.revapi</groupId>
<artifactId>revapi-reporter-json</artifactId>
<version>${revapi-reporter-json-version}</version>
</dependency>
</dependencies>
<configuration>
<failBuildOnProblemsFound>true</failBuildOnProblemsFound>
<checkDependencies>true</checkDependencies>
<newVersion>${project.version}</newVersion>
<failOnUnresolvedArtifacts>true</failOnUnresolvedArtifacts>
<analysisConfiguration>
<revapi.semver.ignore>
<revapi.reporter.json>
<minSeverity>NON_BREAKING</minSeverity>
<minCriticality>documented</minCriticality>
<output>${build.directory}/revapi-result.json</output>
<indent>false</indent>
<append>false</append>
<keepEmptyFile>true</keepEmptyFile>
</revapi.reporter.json>
<revapi.versions>
<enabled>true</enabled>
</revapi.semver.ignore>
<revapi.ignore>
</revapi.versions>
<revapi.differences>
<item>
<code>java.annotation.removed</code>
<annotation>@edu.umd.cs.findbugs.annotations.Nullable</annotation>
Expand All @@ -648,7 +666,7 @@
<annotation>@edu.hm.hafner.util.Generated</annotation>
<justification>Annotation should be save to change.</justification>
</item>
</revapi.ignore>
</revapi.differences>
</analysisConfiguration>
</configuration>
<executions>
Expand Down Expand Up @@ -682,7 +700,6 @@
</executions>
</plugin>
</plugins>

<pluginManagement>
<plugins>
<plugin>
Expand Down

0 comments on commit bf4c1f5

Please sign in to comment.