Skip to content

Commit

Permalink
Merge pull request #72 from policeman-tools/features/maven_verify_phase
Browse files Browse the repository at this point in the history
Switch default Maven lifecycle phase to "verify"
  • Loading branch information
uschindler committed Sep 9, 2015
2 parents df2df96 + 13a958c commit 9c71e78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* <em>In most cases its enough to rename the goal on update, the older v1.0 properties are still available.</em>
* @since 1.2
*/
@Mojo(name = "check", threadSafe = true, requiresProject = true, requiresDependencyResolution = ResolutionScope.COMPILE, defaultPhase = LifecyclePhase.PROCESS_CLASSES)
@Mojo(name = "check", threadSafe = true, requiresProject = true, requiresDependencyResolution = ResolutionScope.COMPILE, defaultPhase = LifecyclePhase.VERIFY)
public final class CheckMojo extends AbstractCheckMojo {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* At least one signature must be given, using any of the corresponding optional parameters.
* @since 1.2
*/
@Mojo(name = "testCheck", threadSafe = true, requiresProject = true, requiresDependencyResolution = ResolutionScope.TEST, defaultPhase = LifecyclePhase.PROCESS_TEST_CLASSES)
@Mojo(name = "testCheck", threadSafe = true, requiresProject = true, requiresDependencyResolution = ResolutionScope.TEST, defaultPhase = LifecyclePhase.VERIFY)
public final class TestCheckMojo extends AbstractCheckMojo {

/**
Expand Down

0 comments on commit 9c71e78

Please sign in to comment.