在 Ant 属性中存储 UNIX 时间戳?
我想在 Ant 属性中存储 UNIX 时间戳(即自纪元以来的秒数),以便稍后在几个构建目标中使用。这似乎是不可能的:
<tstamp>
<format property="build.time" />
</tstamp>`
...生成格式化的时间戳。
<propertyfile file="foo.properties">
<entry key="build.time" type="date" default="now" />
</propertyfile>
...还生成格式化的时间戳。
我希望这可以在不使用
或类似的情况下实现(因为我们有时会在 Windows 上运行构建)。
I'd like to store a UNIX timestamp (i.e. seconds since epoch) in an Ant property for later use in a couple build targets. It appears to be impossible:
<tstamp>
<format property="build.time" />
</tstamp>`
...generates a formatted timestamp.
<propertyfile file="foo.properties">
<entry key="build.time" type="date" default="now" />
</propertyfile>
...also generates a formatted timestamp.
I'd hope that this is possible without using <exec>
or similar (since we will sometimes run the build on Windows).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速谷歌显示:
http:// /www.norio.be/blog/2010/08/getting-unix-time-epoch-ant-build-file
在我看来,其他更简洁的方法是
创建您自己的自定义 anttask。其实这并不难;
http://ant.apache.org/manual/develop.html
使用Maven exec 插件执行 Java 来执行此操作:
http://mojo.codehaus.org/exec-maven-plugin/
A quick google brings up:
http://www.norio.be/blog/2010/08/getting-unix-time-epoch-ant-build-file
Other approaches that would be cleaner IMO would be to
create your own custom anttask. It's really not that difficult;
http://ant.apache.org/manual/develop.html
Use the Maven exec plugin to execute Java to do this:
http://mojo.codehaus.org/exec-maven-plugin/