changeset 860:962278cdeea5

Fix war build. This patch makes maven skip jacoco report for web war. Since this doesn't compile anything it would be bound to fail. Reviewed-by: omajid Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2012-December/004785.html
author Severin Gehwolf <sgehwolf@redhat.com>
date Fri, 14 Dec 2012 18:36:56 +0100
parents 1f3597423ee1
children f39c5b772cd0
files web/war/pom.xml
diffstat 1 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/web/war/pom.xml	Fri Dec 14 12:27:03 2012 -0500
+++ b/web/war/pom.xml	Fri Dec 14 18:36:56 2012 +0100
@@ -70,4 +70,17 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <!-- skip coverage for war -->
+      <plugin>
+        <groupId>org.jacoco</groupId>
+        <artifactId>jacoco-maven-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>