]> source.dussan.org Git - poi.git/commitdiff
[gitub-727] Remove DSTAMP token substitution. Thanks to Emmanuel Bourg. This closes...
authorPJ Fanning <fanningpj@apache.org>
Tue, 19 Nov 2024 09:36:00 +0000 (09:36 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 19 Nov 2024 09:36:00 +0000 (09:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921954 13f79535-47bb-0310-9956-ffa450edef68

build.xml
poi/build.gradle

index 339592729e2436d0b06e45cb3ef9f64355a3c4a7..5c6c07b7e036ebe59430a9b59b1b89b58cc30e54 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -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>
 
index a69312b99e58de22f8ce61a7742967760c2a1f27..2c6c7c542f6f2575f0f5f886722acc3ab8903310 100644 (file)
@@ -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
     }