gpt4 book ai didi

maven - Maven 构建中没有 list 文件

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

我正在使用 Maven 生成一个 war 文件。我试图让它在 war 中生成一个 list 文件。现在它没有发生。我在我的 pom.xml 中包含了以下内容,但我无法让它输出包含该信息的 list 文件。任何人有任何想法或指示?没有 MANIFEST.mf 被投入 war 。

<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
...
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
...
</plugin>
</plugins>
</build>
...
</project>

最佳答案

您应该将其添加到您的插件配置中:

<executions>
<execution>
<phase>package</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>

关于maven - Maven 构建中没有 list 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10322159/

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