Hello All,
I have a Copy task with Multiple filters defined like below
Task(‘myCopy’, type: Copy) {
filter(org.apache.tools.ant.filters.ReplaceTokens, tokens: myProps) // filter-1
filter{line-> line.endsWith("@") ? “” : line } //filter-2
}
Would Copy ensure that filter-1 runs first and then filter-2?
Although, right now I am getting the desired output, I do not want to depend on something that is not guaranteed to be in sequence.
Thank you in advance.