У меня есть задача ant, которая объединяет 2 файла свойств в один файл свойств.
base.config
содержит большинство свойств, а override.config
содержит одно или несколько свойств, которые изменяют значение в base.config
<!--Combine the base.config and override.config together to create a properties file-->
<target name="generateProperties" depends="init">
<property prefix="app.properties" file="override.config"/>
<property prefix="app.properties" file="base.config"/>
<echoproperties destfile="${build.dir}/combined.properties">
<propertyset>
<propertyref prefix="app.properties"/>
<mapper type="glob" from="app.properties.*" to="*"/>
</propertyset>
</echoproperties>
</target>
Как сделать то же самое в Gradle (без импорта задачи муравья)?