I'm using maven-antrun-plugin to execute a thrift shell command. I can compile one file per <exec> with <arg value="...path/to/file.thrift" />, but I would like to compile all .thrift files in a directory. How can I do this?
I tried using <arg value="...path/to/*.thrift" />, but Maven rejected this syntax.
