自从切换到unix后,我的程序集中出现了奇怪的文件

发布于 2024-09-04 02:40:04 字数 264 浏览 4 评论 0原文

由于我已将选项 unix 插入到我的 Maven 程序集插件配置中的文件集和文件中,因此奇怪的文件被放置在我的 tar.gz 文件中。

它们看起来如下:

ignore.me.1499711160.filtered.903528596.formatted
run.sh.2124782621.filtered.1130667884.formatted

你知道为什么会发生这种情况吗?

since I've inserted the option <lineEnding>unix</lineEnding> into my fileSets and files in my Maven assembly plugin configuration, strange files are placed in my tar.

They look as following:

ignore.me.1499711160.filtered.903528596.formatted
run.sh.2124782621.filtered.1130667884.formatted

Do you know why this occurrs?

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

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

发布评论

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

评论(2

扭转时空 2024-09-11 02:40:04

这是 MASSEMBLY-462 中捕获的错误。使用附加补丁修补插件或恢复到以前的版本(尝试使用 2.2-beta-4)。

This is a bug captured in MASSEMBLY-462. Either patch the plugin with the attached patch or revert to a previous version (try with 2.2-beta-4).

酷遇一生 2024-09-11 02:40:04

我遇到了同样的问题,我在汇编器中使用了排除标签,您也可以在 pom 中使用它:

   <fileSet>
        <directory>DEV</directory>
        <outputDirectory>${file.separator}FileName${file.separator}DEV</outputDirectory>
        <useDefaultExcludes>true</useDefaultExcludes>
        <lineEnding>unix</lineEnding>
        <excludes>
          <exclude>*.formatted</exclude>
        </excludes>
    </fileSet>

I had the same problem i used excludes tag in the assembler, you can use it in pom too:

   <fileSet>
        <directory>DEV</directory>
        <outputDirectory>${file.separator}FileName${file.separator}DEV</outputDirectory>
        <useDefaultExcludes>true</useDefaultExcludes>
        <lineEnding>unix</lineEnding>
        <excludes>
          <exclude>*.formatted</exclude>
        </excludes>
    </fileSet>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文