Ant plugin for Oh My Zsh

Pretty much a clone of the phing plugin, I have also created a plugin for ant. It works in almost the same way, however it uses a sed one-liner for getting the targets from the build file. Like my last plugin it assumes that the build file is named build.xml. The sed command to list the ant targets could actually be used for getting the phing targets as well. It looks like this:

sed -n '/<target/s/<target.*name="\([^"]*\).*$/\1/p' build.xml

Like last time, please contact me if you have changes, ideas, feature requests or ... whatever really.