Skip to content

Commit

Permalink
Merge pull request #29 from dmitry-timofeev/make-check-thread-safe
Browse files Browse the repository at this point in the history
Make check mojo thread-safe:
  • Loading branch information
bmarwell authored May 27, 2021
2 parents 79f3a4f + fd04923 commit 95044bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/codehaus/mojo/tidy/CheckMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Checks that the <code>pom.xml</code> is tidy. Fails the build if <code>mvn tidy:pom</code> would
* create a different <code>pom.xml</code> than the current one.
*/
@Mojo( name = "check", defaultPhase = LifecyclePhase.VERIFY )
@Mojo( name = "check", defaultPhase = LifecyclePhase.VERIFY, threadSafe = true)
public class CheckMojo
extends TidyMojo
{
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/codehaus/mojo/tidy/TidyMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public abstract class TidyMojo
protected abstract void executeForPom( String pom )
throws MojoExecutionException, MojoFailureException;

@Override
public void execute()
throws MojoExecutionException, MojoFailureException
{
Expand Down

0 comments on commit 95044bf

Please sign in to comment.