我必须构建包含所有依赖项和 log4j.properties 文件的 jar 文件。
我在stackoverflow上寻找答案,但没有运气。
现在我正在构建具有所有依赖项的 jar,但我现在不知道如何告诉 maven 将 log4j.properties 文件移动到 ma *.jar 文件中的 META-INF 目录。
我的 pom 的一部分,它生成具有依赖关系的 jar:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
为了让 jar 包含所有依赖项和 log4j.properties 文件,我需要做什么?