Is there a way to re-assign the value for the Ant property task? Or is there another task available for that purpose?
Properties are immutable in ant. But that's not as terrible a limitation as it may seem. There's a whole class of programming languages where (most) variables are constant and yet they get stuff done this is called "functional programming."
You can "change" values used by different tasks by deriving new, changed properties from old ones, or changing parameters when calling tasks with the subant or antcall tasks. If you're creative you can usually find a way to solve your problem.