gpt4 book ai didi

maven - 使用 maven-assembly-plugin 构建 ZIP 存档时如何禁用压缩

转载 作者:行者123 更新时间:2023-12-05 00:33:53 25 4
gpt4 key购买 nike

我有一个由 maven-assembly-plugin 生成的 ZIP 存档。它主要包含已经压缩的 JAR。再次压缩它们只会增加构建时间而没有任何 yield 。在构建 ZIP 存档时,如何配置 maven-assembly-plugin(或程序集描述符)以关闭压缩(即仅存储)?

最佳答案

使用 archiverConfig组件插件配置中的元素,设置 compress选项 false .

例如

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/zip-application.xml</descriptor>
</descriptors>
<attach>true</attach>

<!-- Turn off compression -->
<archiverConfig>
<compress>false</compress>
</archiverConfig>
</configuration>
<executions>
<execution>
<id>create-zip</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

关于maven - 使用 maven-assembly-plugin 构建 ZIP 存档时如何禁用压缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11425094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com