You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by mc...@apache.org on 2014/01/22 20:28:10 UTC

[45/53] [abbrv] git commit: updated refs/heads/rbac to 33cd1ab

Add a profile that disables checkstyle completely for the project.

Activate this profile in your IDE if you're having problems with checkstyle when switching branches. Please ensure that you at least compile once with checkstyle enabled before committing.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/33eaa4f6
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/33eaa4f6
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/33eaa4f6

Branch: refs/heads/rbac
Commit: 33eaa4f63332581fb96585b512006adfed3f0092
Parents: dc227e3
Author: Hugo Trippaers <ht...@schubergphilis.com>
Authored: Wed Jan 22 10:29:07 2014 +0100
Committer: Hugo Trippaers <ht...@schubergphilis.com>
Committed: Wed Jan 22 10:29:07 2014 +0100

----------------------------------------------------------------------
 pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/33eaa4f6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f6f04d4..db88fe9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -851,5 +851,23 @@
         <module>vmware-base</module>
       </modules>
     </profile>
+    <profile>
+      <id>disablecheckstyle</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-checkstyle-plugin</artifactId>
+              <executions>
+                <execution>
+                  <id>cloudstack-checkstyle</id>
+                  <phase>none</phase>
+                  <inherited>true</inherited>
+                </execution>
+              </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>  
   </profiles>
 </project>