gpt4 book ai didi

java - 在pom.xml中包含maven项目中的所有资源

转载 作者:行者123 更新时间:2023-12-01 18:48:23 25 4
gpt4 key购买 nike

我需要将所有资源包含在我的 pom.xml 中,但我没有成功。事实上,我正在尝试这段代码,但我认为它不适用于所有资源

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>project/classifier</shadedClassifierName>
<outputFile>shade\${project.artifactId}.jar</outputFile>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>fr.tse.fise2.pip.graphic.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>

最佳答案

favicon 应位于 src/main/resources 或子文件夹中。

如果您不想将其保留在那里,可以使用maven-resources-plugin复制它

关于java - 在pom.xml中包含maven项目中的所有资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59776484/

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