Skip to content

Commit

Permalink
Enable RevAPI in quality monitor.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Jan 7, 2025
1 parent 507874b commit 9455f2b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/quality-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@ jobs:
}
]
},
{
"name": "API Problems",
"id": "api",
"icon": "no_entry_sign",
"tools": [
{
"id": "revapi",
"sourcePath": "src/main/java",
"pattern": "**/target/revapi.json"
}
]
},
{
"name": "Vulnerabilities",
"id": "vulnerabilities",
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,6 @@
<groupId>org.revapi</groupId>
<artifactId>revapi-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
<versionFormat>[-0-9.]*</versionFormat>
<failBuildOnProblemsFound>true</failBuildOnProblemsFound>
<checkDependencies>true</checkDependencies>
Expand Down Expand Up @@ -995,7 +994,7 @@
<minSeverity>NON_BREAKING</minSeverity>
<minCriticality>documented</minCriticality>
<output>${project.build.directory}/revapi-result.json</output>
<indent>false</indent>
<indent>true</indent>
<append>false</append>
<keepEmptyFile>true</keepEmptyFile>
</revapi.reporter.json>
Expand Down

0 comments on commit 9455f2b

Please sign in to comment.