Repository: jclouds Updated Branches: refs/heads/change-checkstyle 52ade04fb -> 5d849888c (forced update)
Moving the default invocation of checkstyle:check to the 'validate' phase Previously, we added *another* invocation of checkstyle:check, which was unnecessary and caused DEV@cloud builds to break into the bargain. Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/5d849888 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/5d849888 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/5d849888 Branch: refs/heads/change-checkstyle Commit: 5d849888cb1c7e9fe5d09329773329dd4c207111 Parents: 8f64133 Author: Andrew Phillips <[email protected]> Authored: Mon Oct 6 23:00:11 2014 -0400 Committer: Andrew Phillips <[email protected]> Committed: Mon Oct 6 23:29:14 2014 -0400 ---------------------------------------------------------------------- project/pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/5d849888/project/pom.xml ---------------------------------------------------------------------- diff --git a/project/pom.xml b/project/pom.xml index 6a8d82e..52aa45b 100644 --- a/project/pom.xml +++ b/project/pom.xml @@ -711,7 +711,8 @@ <!-- configuration and dependencies set via profiles --> <executions> <execution> - <id>checkstyle</id> + <id>default</id> + <!-- move default, which usually binds to the verify phase, to validate --> <phase>validate</phase> <goals> <goal>check</goal>
