Hello, everyone!
I know that there is ant-contrib
, which provides "if-else" logic for ant.
But I need to achieve the same without ant-contrib
. Is that possible?
Pseudocode which I need to work:
if(property-"myProp"-is-true){
do-this;
}else{
do-that;
}
Thank you!