Jar 文件命名约定

发布于 2024-07-05 13:02:38 字数 27 浏览 7 评论 0原文

是否有命名 jar 文件的行业标准约定?

Are there any industry standard conventions for naming jar files?

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

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

发布评论

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

评论(2

他不在意 2024-07-12 13:02:38

如果您的 jar 用于 JEE,则这些准则适用:

模块名称用作 EJB 归档名称。 默认情况下,
模块名称应该基于包名称并且应该这样写
采用全小写 ASCII 字母。 如果发生冲突,模块名称
应该是更具体的版本(包括包的其他部分
名称):

EJB 存档:-ejb.jar

EJB 客户端存档:-ejb-client.jar

If your jar is used for JEE then these guidelines apply:

The module name is used as the EJB archive name. By default, the
module name should be based on the package name and should be written
in all-lowercase ASCII letters. In case of conflict, the module name
should be a more specific version (including other part of the package
name):

EJB archive: -ejb.jar

EJB client archive: -ejb-client.jar

坠似风落 2024-07-12 13:02:38

我一直在使用

*Informative*-*name*-*M*.*m*.*b*.jar

Where:

M = 主要版本号(当不一定保持向后兼容性时更改)

m = 次要版本号(功能添加等)

b = 内部版本号(对于包含错误修复的版本)

I have been using

*Informative*-*name*-*M*.*m*.*b*.jar

Where:

M = major version number (changed when backward compatibility is not necessarily maintained)

m = minor version number (feature additions etc)

b = build number (for releases containing bug fixes)

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