https://bz.apache.org/bugzilla/show_bug.cgi?id=57954
--- Comment #6 from Stefan Bodewig <[email protected]> --- To be honest I can't think of a combination of Ant tasks that would base64-decode only the value side of a property file. I see two approaches: * a custom PropertyEvaluator that decoded values on the fly * a custom FilterReader http://ant.apache.org/manual/Types/filterchain.html or string filter for a TokenFilter http://ant.apache.org/manual/Types/filterchain.html#tokenfilter that splits the line, base64-decodes the value part and reassembles the line. The second one is probably easier to implement and integrate. Either case it will require you to write your own code in Java, compile it, and make it available to the build process. -- You are receiving this mail because: You are the assignee for the bug.
