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

[06/10] git commit: updated refs/heads/master to 49124bd

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/master
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>