Skip to content

Commit

Permalink
Do not replace the @DStamp@ token when generating Version.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ebourg committed Nov 19, 2024
1 parent 0aa9e2b commit 9d0b807
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
1 change: 0 additions & 1 deletion poi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 9d0b807

Please sign in to comment.