diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-11-19 09:36:00 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-11-19 09:36:00 +0000 |
commit | 0f42425f8cc577edfdf283de89c86ac349520ffa (patch) | |
tree | 0677976239e484b8120f860e214b65d86408618a | |
parent | 0aa9e2bbb7ba7921fc86545a6b2c6c61edebc40f (diff) | |
download | poi-0f42425f8cc577edfdf283de89c86ac349520ffa.tar.gz poi-0f42425f8cc577edfdf283de89c86ac349520ffa.zip |
[gitub-727] Remove DSTAMP token substitution. Thanks to Emmanuel Bourg. This closes #727
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921954 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.xml | 1 | ||||
-rw-r--r-- | poi/build.gradle | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -1563,7 +1563,6 @@ under the License. <copy file="${main.version.template}" tofile="${main.version.java}" overwrite="true"> <filterset> <filter token="VERSION" value="${version.id}"/> - <filter token="DSTAMP" value="${DSTAMP}"/> </filterset> </copy> diff --git a/poi/build.gradle b/poi/build.gradle index a69312b99e..2c6c7c542f 100644 --- a/poi/build.gradle +++ b/poi/build.gradle @@ -69,7 +69,6 @@ task generateVersionJava() { String content = fileIn.text content = content.replace("@VERSION@", version) - content = content.replace("@DSTAMP@", new Date().format('yyyyMMdd')) fileOut.write content } |