Skip to content

Commit

Permalink
fix(jqassistant): execute maven plugin on verify phase
Browse files Browse the repository at this point in the history
That ways jqassistant won't scan the project if there are failing integration tests
  • Loading branch information
murdos committed Oct 12, 2024
1 parent 6046fab commit 235e5c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private static MavenPluginOptionalBuilder jQAssistantPluginBuilder() {
private static MavenPlugin jQAssistantPluginManagement() {
return jQAssistantPluginBuilder()
.versionSlug("jqassistant")
.addExecution(pluginExecution().goals("scan", "analyze").id("default-cli"))
.addExecution(pluginExecution().goals("scan", "analyze").phase(VERIFY).id("default-cli"))
.build();
}

Expand Down

0 comments on commit 235e5c3

Please sign in to comment.