gpt4 book ai didi

java - 如何使用 maven 在 jar 编译中包含非 java 文件?

转载 作者:行者123 更新时间:2023-12-01 17:22:58 25 4
gpt4 key购买 nike

我有一个包含保存数据的 .txt 文件的文件夹。这些数据被加载到我的游戏中,然后在游戏中使用。

我还有 3 个不在 Maven 上的其他库。所以我使用这个插件将它们加载到 .m2 文件夹中:maven-install-plugin

    <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-everythingrs-api-jar</id>
<phase>validate</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>everythingrs-api</groupId>
<artifactId>everythingrs-api</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<file>${project.basedir}/lib/everythingrs-api.jar</file>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>
...
</execution>
<execution>
...
</execution>
<executions>
</plugin>

然后我使用这个插件:maven-assemble-plugin 将项目编译成一个包含其中库的 jar。

    <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>${main-class-path}</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>

现在,如果我运行 mvn clean validate install,会将我拥有的 3 个库复制到 .m2 中,然后第二个插件将编译成一个可执行 jar,其中包含从 maven repo 导入的库以及添加到的 3 个库将.m2放入 jar 中。

但是,我还有一个位于项目 ./中但在 src 之外的文件夹,我怎样才能使 Maven 插件也将此目录/文件夹包含到 jar 中?

最佳答案

尝试使用maven resources plugin.它允许您添加不在 /src/main/resources 下的文件夹作为 Maven 资源。

关于java - 如何使用 maven 在 jar 编译中包含非 java 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61257533/

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