版本是否应该出现在 .jar 文件的名称中?
可能的重复:
Jar 文件命名约定
目前,我决定标准化 .jar 文件的名称。在许多项目中,.jar 文件的版本出现在名称中,例如 richfaces-3.0.1.jar。这是一个很好的命名风格还是我应该在清单中提及 .jar 文件的版本?如果更好,我应该在内部发布中使用这种风格吗?
Possible Duplicate:
Jar file naming conventions
Currently, I've decided to standardize the name of my .jar files. In many projects, the version of the .jar files appear in the name, e.g. richfaces-3.0.1.jar. Is it a good naming style or should I mention the version of the .jar file in its manifest? If it is better, should I use this style for my internal releaseses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在 jar 中使用版本号。查看诸如 http://mvnrepository.com/ 之类的页面。当您下载大量 jar 时,经常会发生两个 jar 依赖于具有不同版本号的同一个 lib 的情况。在 jar 文件中使用版本号有助于工具链中使用的工具。
You should use Version numbers in your jars. Look at pages like http://mvnrepository.com/. When you download a huge number of jars it can happen quite often that two jars are dependend on the same lib with different version numbers. Using the Version number in your jar file helps tools that are used in your toolchain.