Author: fanningpj
Date: Tue Nov 19 09:36:00 2024
New Revision: 1921954
URL: http://svn.apache.org/viewvc?rev=1921954&view=rev
Log:
[gitub-727] Remove DSTAMP token substitution. Thanks to Emmanuel Bourg. This
closes #727
Modified:
poi/trunk/build.xml
poi/trunk/poi/build.gradle
Modified: poi/trunk/build.xml
URL:
http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1921954&r1=1921953&r2=1921954&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Tue Nov 19 09:36:00 2024
@@ -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>
Modified: poi/trunk/poi/build.gradle
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/build.gradle?rev=1921954&r1=1921953&r2=1921954&view=diff
==============================================================================
--- poi/trunk/poi/build.gradle (original)
+++ poi/trunk/poi/build.gradle Tue Nov 19 09:36:00 2024
@@ -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
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]