This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch MEAR-322 in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git
commit 638b906cc979cff66392b9f9d8e51c1ca0e750ef Author: Slawomir Jaranowski <[email protected]> AuthorDate: Sat Oct 22 18:14:46 2022 +0200 [MEAR-322] Try to reproduce issue --- src/it/skinny-wars-filenamemapping-full/war-module/pom.xml | 5 +++++ src/it/skinny-wars/ear-module/pom.xml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/it/skinny-wars-filenamemapping-full/war-module/pom.xml b/src/it/skinny-wars-filenamemapping-full/war-module/pom.xml index eeac7cd..0641a93 100644 --- a/src/it/skinny-wars-filenamemapping-full/war-module/pom.xml +++ b/src/it/skinny-wars-filenamemapping-full/war-module/pom.xml @@ -41,6 +41,11 @@ under the License. <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>@mavenWarPluginVersion@</version> + <configuration> + <archive> + <compress>false</compress> + </archive> + </configuration> </plugin> </plugins> </build> diff --git a/src/it/skinny-wars/ear-module/pom.xml b/src/it/skinny-wars/ear-module/pom.xml index d9d59c8..45f4285 100644 --- a/src/it/skinny-wars/ear-module/pom.xml +++ b/src/it/skinny-wars/ear-module/pom.xml @@ -53,6 +53,9 @@ under the License. <version>@project.version@</version> <configuration> <skinnyWars>true</skinnyWars> + <archive> + <compress>false</compress> + </archive> </configuration> </plugin> </plugins>
