用于在 jar 中包含文件的 Maven 脚本

发布于 2024-12-26 04:24:47 字数 207 浏览 2 评论 0原文

如何在 jar 文件中包含 config 文件夹。 假设我有一个服务项目 services/src/config/adp/flt/get.flt config文件夹中有一个flt文件。 所以我想使用 maven 脚本将该文件夹包含在 services.jar 中 我尝试了不同的解决方案复制资源,但它正在将该文件夹复制到目标文件夹而不是 services.jar 中

How do i include config folder in jar file.
let say i have one services project
services/src/config/adp/flt/get.flt
there is one flt file in config folder.
So i want to include that folder in services.jar using maven script
I have tried different solution copy-resources but it is copying that folder on target folder not in services.jar

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甩你一脸翔 2025-01-02 04:24:47

尝试 Maven 资源插件

<project>
  ...
  <build>
    ...
    <resources>
      <resource>
         <directory> [your folder here] </directory>
      </resource>
    </resources>
    ...
  </build>
  ...
</project>

或者,您可以将文件移动到Maven 默认资源文件夹 src/main/resources 的子目录。这样,它们就会自动包含在内。

Try the Maven Resource Plugin:

<project>
  ...
  <build>
    ...
    <resources>
      <resource>
         <directory> [your folder here] </directory>
      </resource>
    </resources>
    ...
  </build>
  ...
</project>

Alternatively, you could move your files to a sub directory of Maven's default resource folder, src/main/resources. In that way, they get included automatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文