On Wed, 2004-10-06 at 04:26, Dinko Hadzic wrote: > Maven tasklist plugin defaults to @todo so that @todo tags are > processed. > > > Does it only work with Javadoc tags such as /** @todo ... */ , or does > it also see non-Javadoc tags such as //TODO?
It uses qdox underneath so yes, it only deals with javadoc tags currently. > I tried modifying the maven.tasklist.taskTag property with no luck, it > only seems to accept Javadoc syntax? That is correct. > Is it possible to make it more flexible to pick up other variations of > the todo-tag, like // TODO, /** @TODO, /* todo etc. etc. at the same > time? It would probably be fairly easy to use a regex package to search for things, including javadoc @tags, instead of using qdox. But currently you're limited to @tags. -- jvz. Jason van Zyl [EMAIL PROTECTED] http://maven.apache.org happiness is like a butterfly: the more you chase it, the more it will elude you, but if you turn your attention to other things, it will come and sit softly on your shoulder ... -- Thoreau --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
