Please note that I donot want the gradle task with embedded ant script. Is there any alternative. Please suggest
style basedir="${codegen.dir}/resources" includes=“services.xml” destdir="${codegen.dir}/META-INF" extension=".xml" style=“module.xsl” out=“services.xml” />
I have an ant task, which apply the module.xsl stylesheet to add a module reference to the service .xml definition.
Can you please let me know how can I achieve in GRADLE.
Please donot suggest something like below.
task formatTestResults {
ant.xslt("…")
}