为什么快照名称的 jar 文件名中总是包含日期?如何删除它
当我部署jar时,maven总是在其文件名中添加日期,这使得文件名存储库与我本地的文件不同。如何删除文件名中的日期?
谢谢
When I deploy jar, maven always add date in its file name, this make the file name repository different from the file in my local. How can I remove the date in file name ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么,因为它是一个 SNAPSHOT 包,每次部署它时,您实际上都是在部署它的新版本,因此添加了时间戳以在远程存储库中区分它们。当 Maven 下载它时,它会删除时间戳,因为在你的本地存储库上只能有一个版本,因此时间戳如果不混淆的话是没有用的。
可以将其删除,此站点 使用
-DuniqueVersion=false
参数:但是,您不应该关心工件名称、文件等。您正在使用 maven,因此您不必关心关心他们。
About why, it's because being it a SNAPSHOT package, each time you deploy it you are de-facto deploying a new version of it, so the timestamp is added to differentiate them in the remote repository. When Maven downloads it, it removes the timestamp because on your local repository there can only be one version, so the timestamp is useless if not confusing.
It can be removed, this site use the
-DuniqueVersion=false
parameter :However, you should NOT care about artifact names, files etc.. You are using maven SO THAT you don't have to care about them.