← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 15915: Added useWarCompression property to pom. Enables turning off compression in building the war arti...

 

------------------------------------------------------------
revno: 15915
committer: Halvdan Hoem Grelland <halvdanhg@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-06-30 16:54:09 +0200
message:
  Added useWarCompression property to pom. Enables turning off compression in building the war artifact.
modified:
  dhis-2/dhis-web/pom.xml


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/pom.xml'
--- dhis-2/dhis-web/pom.xml	2014-06-06 09:55:10 +0000
+++ dhis-2/dhis-web/pom.xml	2014-06-30 14:54:09 +0000
@@ -45,6 +45,9 @@
         <configuration>
           <archiveClasses>true</archiveClasses>
           <dependentWarExcludes>**/web.xml</dependentWarExcludes>
+          <archive>
+            <compress>${useWarCompression}</compress>
+          </archive>
         </configuration>
       </plugin>
       <plugin>
@@ -88,5 +91,6 @@
   </dependencyManagement>
   <properties>
     <rootDir>../</rootDir>
+    <useWarCompression>true</useWarCompression>
   </properties>
 </project>