English 中文(简体)
利用Antonio将时间投入JAR Manifest
原标题:Embedding build time into JAR Manifest using Ant

如果我想用ant子把目前时间放在JAR的表面上,那么我就能够用于“现在”的“现在”,而哪一个明显属性最能说明这些信息?

下面是我。

  <manifest>
    <attribute name="Signature-Title" value="${project.name}"/>
    <attribute name="Signature-Version" value="${release.version}"/>
    <attribute name="Signature-Vendor" value="XXX"/>
    <attribute name="Built-By" value="${user.name}"/>
  </manifest>
最佳回答

http://ant.apache.org/manual/Tasks/tstamp.html。

 <tstamp>
    <format property="TODAY" pattern="yyyy-MM-dd HH:mm:ss" />
  </tstamp>

  <manifest>
    <attribute name="Signature-Title" value="${project.name}"/>
    <attribute name="Signature-Version" value="${release.version}"/>
    <attribute name="Signature-Vendor" value="XXX"/>
    <attribute name="Built-By" value="${user.name}"/>
    <attribute name="Built-Date" value="${TODAY}"/>
  </manifest>

这项任务确定了三个特性(STAMP,TSTAMP,和Today),每个特性都采用不同的违约格式(核对链接)。 有了封顶的<代码>format node,你可以确定其中任何一种习俗格式。

问题回答

。 META-INF/MANIFEST.MF(登机使用当地化日期/时间,没有TZ,因为你会丢失时日信息)。

。 Maven如何在Maven.build.timestamp展示当地时间区?





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签