Repository: jena
Updated Branches:
  refs/heads/JENA-507 24fcee58e -> 153a05e7f


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/153a05e7
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/153a05e7
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/153a05e7

Branch: refs/heads/JENA-507
Commit: 153a05e7f559e1d7e08b001eb4f4754e6f3436f4
Parents: 24fcee5
Author: Rob Vesse <[email protected]>
Authored: Thu Mar 19 14:18:58 2015 +0000
Committer: Rob Vesse <[email protected]>
Committed: Thu Mar 19 14:18:58 2015 +0000

----------------------------------------------------------------------
 jena-parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/153a05e7/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>

Reply via email to