Simulating the Maven2 filter mechanism using Ant
问题 I have a properties file, let say my-file.properties. In addition to that, I have several configuration files for my application where some information must be filled regarding the content of my-file.properties file. my-file.properties: application.version=1.0 application.build=42 user.name=foo user.password=bar Thus, in my configuration files, I will find some ${application.version} , ${user.name} that will be replaced by their value taken in the properties file... When I build my