Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class TrackConfigChangesMojo extends QuarkusBootstrapMojo {
* Skip the execution of this mojo
*/
@Parameter(defaultValue = "false", property = "quarkus.track-config-changes.skip")
boolean skip = false;
boolean skipConfigChangesTracking = false;

@Parameter(property = "launchMode")
String mode;
Expand Down Expand Up @@ -79,7 +79,7 @@ public class TrackConfigChangesMojo extends QuarkusBootstrapMojo {

@Override
protected boolean beforeExecute() throws MojoExecutionException, MojoFailureException {
if (skip) {
if (skipConfigChangesTracking) {
getLog().info("Skipping config dump");
return false;
}
Expand Down
Loading