Repository: jena Updated Branches: refs/heads/master bd4d4db11 -> 3710b7aaa
Do rat:check earlier in the build process Previously rat:check was invoked in the verify phase which comes after package in the Maven lifecycle so developers could commit code that failed the RAT checks and we wouldn't know until the nightly deploy build ran because a mvn deploy will include the verify phase. This commit moves rat:check to the validate phase so that it will run during the start of builds so developers are more likely to see and fix any RAT errors before they commit Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/3710b7aa Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/3710b7aa Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/3710b7aa Branch: refs/heads/master Commit: 3710b7aaae2fd879ecb28c8e716f905307fe34bd Parents: bd4d4db Author: Rob Vesse <[email protected]> Authored: Thu Mar 19 14:18:58 2015 +0000 Committer: Rob Vesse <[email protected]> Committed: Thu Mar 19 15:17:27 2015 +0000 ---------------------------------------------------------------------- jena-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/3710b7aa/jena-parent/pom.xml ---------------------------------------------------------------------- diff --git a/jena-parent/pom.xml b/jena-parent/pom.xml index 344ad39..b573b62 100644 --- a/jena-parent/pom.xml +++ b/jena-parent/pom.xml @@ -368,7 +368,7 @@ <executions> <execution> <id>rat-checks</id> - <phase>verify</phase> + <phase>validate</phase> <goals> <goal>check</goal> </goals>
