gpt4 book ai didi

maven-2 - Maven组装插件支持Jar格式吗?

转载 作者:行者123 更新时间:2023-12-02 14:27:33 27 4
gpt4 key购买 nike

我已将程序集描述符配置为具有 jar 类型的程序集

<formats>
<format>jar</format>
</formats>

但是,在运行 mvn install 时获取的是 zip 文件而不是 jar。我哪里出错了?

最佳答案

此配置生成一个 jar 程序集,其分类器 jar- assembly 仅包含目标/类的内容。如果需要将其他内容添加到 jar 中,您可以添加其他文件集。为了确保您的目标目录中没有以前运行的 zip 存档,您可以将其删除或运行 mvn clean

<assembly>
<id>jar-assembly</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.outputDirectory}</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>

插件配置应该如下所示。请注意,将appendAssemblyId设置为false将导致默认jar被程序集中的jar替换,如果这不是所需的行为,请删除该元素:

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/archive.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>

关于maven-2 - Maven组装插件支持Jar格式吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1393255/

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