如何查找项目最新 Maven 构建的时间戳?

发布于 2024-11-08 13:32:08 字数 92 浏览 0 评论 0原文

如果我是从终端构建的,我会按 ctrl+F mvn install 并检查时间戳,但否则(通过 NB 构建)是否存在写入构建历史记录的文件日志?

If I was building from a Terminal I'd ctrl+F mvn install and check the timestamp, but otherwise (building through NB) is there a file log to which builds history is written?

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

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

发布评论

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

评论(1

我是有多爱你 2024-11-15 13:32:08

您可以使用 FinalName 修改工件将生成的名称,以在其上附加时间戳。

${project.artifactId}-${project.version}-${maven.build.timestamp}

除此之外,您可以使用 Teamcity 等 CI(持续集成)服务器来为您构建工件。然后,Teamcity 将生成带有时间戳的日志。

You can modify your the name your artifact will generate to have a timestamp appended onto it using finalName.

${project.artifactId}-${project.version}-${maven.build.timestamp}

Other than that, you could use a CI (Continuous Integration) server like Teamcity to build the artifacts for you. Teamcity will then generate logs with timestamps.

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