在 Ant 属性中存储 UNIX 时间戳?

发布于 2024-11-01 03:59:51 字数 446 浏览 2 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

流心雨 2024-11-08 03:59:51

快速谷歌显示:

http:// /www.norio.be/blog/2010/08/getting-unix-time-epoch-ant-build-file

<target name="print-epoch">
  <script language="javascript">
  <![CDATA[
    property = project.setProperty("now",Math.floor((new Date()).getTime()/1000));
  ]]>
  </script>
  <echo message="${now}" />
</target>

在我看来,其他更简洁的方法是

  1. 创建您自己的自定义 anttask。其实这并不难;
    http://ant.apache.org/manual/develop.html

  2. 使用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

<target name="print-epoch">
  <script language="javascript">
  <![CDATA[
    property = project.setProperty("now",Math.floor((new Date()).getTime()/1000));
  ]]>
  </script>
  <echo message="${now}" />
</target>

Other approaches that would be cleaner IMO would be to

  1. create your own custom anttask. It's really not that difficult;
    http://ant.apache.org/manual/develop.html

  2. Use the Maven exec plugin to execute Java to do this:
    http://mojo.codehaus.org/exec-maven-plugin/

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