maven: building a war with uncompressed jars -


i trying have project packacking war jars uncompressed. thought done this:

        <plugin>             <groupid>org.apache.maven.plugins</groupid>             <artifactid>maven-war-plugin</artifactid>             <version>2.6</version>             <configuration>                 <recompresszippedfiles>true</recompresszippedfiles>                 <archive>                     <compress>false</compress>                 </archive>             </configuration>         </plugin> 

however recompresszippedfiles parameter seems ignored, jars in web-inf/lib folder orginal, , compressed, ones (no matter if remove archive element or not).

i know default of recompresszippedfiles true. no matter if specify or not, jars original ones. don't fresh ones.

any ideas?

i asked use case: war used on several machines virus scanners (e.g. kaspersky) looking every file, in archives. need reduce time virus scanners need (without changing settings of scanners).


Comments