Currently I understand that we can use org.apache.tools.ant.filters.ReplaceTokens
to replace the contents of a file during build in the following way.
myBeans.xml
:
<bean id="mybean1" class="com.test.MyClass1" >
<property name="myprop1" value="@myproperty@" />
</bean>
my.properties
:
myprop=testme
gradle file:
from file("myBeans.xml"), {
filter(ReplaceTokens, tokens: ["myproperty": project.properties["myprop"]])
}
However I would want gradle to find the property names from my.properties
file and replace it in the xml file (without mentioning myprop
in the filter). If not, I would have to add all the PlaceHolders
manually.