如何查找项目最新 Maven 构建的时间戳?
如果我是从终端构建的,我会按 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.