Re: Custom tags in the pom

2011-03-30 Thread Phillip Hellewell
terfaces" can produce a version clash. If I go this route, then I won't have to do anything funky like custom tags in the pom. Phillip - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Custom tags in the pom

2011-03-30 Thread Phillip Hellewell
On Wed, Mar 30, 2011 at 10:29 AM, Stephen Connolly wrote: > it's an xml document that is parsed by a parser that expects a > specific structure Thanks for the ideas everyone. Yeah, I would probably look at using namespaces, but the parser doesn't like that. The comment idea works of course, but

Re: Custom tags in the pom

2011-03-30 Thread Stephen Connolly
:15 PM > To: Maven Users List > Cc: Stan Devitt > Subject: Re: Custom tags in the pom > > Modello may object to some uses of namespaces... suck it and see! > > On 30 March 2011 16:56, Stan Devitt wrote: >> Why not name spaces? >> >> -Original Message-

RE: Custom tags in the pom

2011-03-30 Thread Stan Devitt
ginal Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Wednesday, March 30, 2011 12:15 PM To: Maven Users List Cc: Stan Devitt Subject: Re: Custom tags in the pom Modello may object to some uses of namespaces... suck it and see! On 30 March 2011 16:56, Stan Devitt

Re: Custom tags in the pom

2011-03-30 Thread Stephen Connolly
: Maven Users List > Subject: Re: Custom tags in the pom > > how about XML PI's > > IIRC maven tools which rewrite the pom might strip them out, but > otherwise you'd be fine > > On 30 March 2011 14:06, Phillip Hellewell wrote: >> Is there any way short of

RE: Custom tags in the pom

2011-03-30 Thread Stan Devitt
Why not name spaces? -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Wednesday, March 30, 2011 9:48 AM To: Maven Users List Subject: Re: Custom tags in the pom how about XML PI's IIRC maven tools which rewrite the pom might strip them out

Re: Custom tags in the pom

2011-03-30 Thread Stephen Connolly
how about XML PI's IIRC maven tools which rewrite the pom might strip them out, but otherwise you'd be fine On 30 March 2011 14:06, Phillip Hellewell wrote: > Is there any way short of recompiling Maven to allow custom tags in the > pom.xml? > > Specifically, I would like to have a special tag

Re: Custom tags in the pom

2011-03-30 Thread Rafael Vanderlei
Maybe it´s not the best way, but if you´re possibly willing to manually parse the pom, I believe you could just insert a XML Comment (like ) and the XML parsing framework would be able to see it. On Wed, Mar 30, 2011 at 10:06 AM, Phillip Hellewell wrote: > Is there any way short of recompiling Ma

Re: Custom tags in the pom

2011-03-30 Thread Wendy Smoak
On Wed, Mar 30, 2011 at 9:06 AM, Phillip Hellewell wrote: > Is there any way short of recompiling Maven to allow custom tags in the > pom.xml? > > Specifically, I would like to have a special tag inside . > It's ok if Maven ignores it; I will just look at it from my plugin > that will parse the p

Custom tags in the pom

2011-03-30 Thread Phillip Hellewell
Is there any way short of recompiling Maven to allow custom tags in the pom.xml? Specifically, I would like to have a special tag inside . It's ok if Maven ignores it; I will just look at it from my plugin that will parse the pom manually if it has to. Thanks, Phillip ---