Re: RE : default skin - where do i get it?

2006-02-25 Thread Brett Porter
Set the version to the timestamp-build number you are using is more reliable. - Brett On 2/25/06, Wayne Fay <[EMAIL PROTECTED]> wrote: > mvn -o to work offline... > > --wf > > > On 2/24/06, David Sag <[EMAIL PROTECTED]> wrote: > > > > > > yes that's what I thought and indeed already had that site

Re: Maven2 plugin for validating XML?

2006-02-25 Thread Wayne Fay
On 2/25/06, Jochen Wiedmann wrote: > > > Why do you need a plugin for this? > > Why not? Validating XML is a standard qualitiy requirement for any > project that delivers XML files, possibly a lot of XML files. That's the beauty of open source -- I may think its "dumb" and not see the value of suc

Re: Maven2 plugin for validating XML?

2006-02-25 Thread Jochen Wiedmann
Wayne Fay wrote: > Why do you need a plugin for this? Why not? Validating XML is a standard qualitiy requirement for any project that delivers XML files, possibly a lot of XML files. You could as well ask: Why the XXX plugin, if we have the Ant plugin? Jochen --

Re: [m2] Overall code quality summary reports

2006-02-25 Thread Wayne Fay
This is something I've been looking into myself just recently. No easy solutions as yet. There's a Cobertura plugin already but there are issues, so you need to wait until 2.0.3 is out to really use it -- this is all according to things I've read, I don't use it myself (yet). As for JavaNCSS, the

Re: Maven2 plugin for validating XML?

2006-02-25 Thread Wayne Fay
You don't need a plugin, just write a test... Add a dependency on your favorite XML engine in pom.xml. Add the XSD in src/test/resources. Add a unit test in src/test/... that runs your code generated XML against the XSD in resources and asserts GOOD or BAD. Why do you need a plugin for this? Wayn

RE: Error in deploy:deploy-file

2006-02-25 Thread raghu guru
Thanks for your mail, As i said in my post i already logged in as that ftp user and tried making those directories, and i was able to do that without any error i dont' is this something know issue with maven2 or something else i need to include in my command line deploy:deploy-file

Re: [m2] How do I stop using a SNAPSHOT from my local repository?

2006-02-25 Thread Alexandre Poitras
You have to set your internal snapshot repository update policy to "always" so Maven check if there is a fresher version out there. On 2/25/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: > On 2/24/06, KC Baltz <[EMAIL PROTECTED]> wrote: > > We have several projects here that depend on a common "core"

RE: Overriding parent plugin configuration in a module

2006-02-25 Thread Brian E. Fox
I think this is related to a problem that was fixed in 2.0.3: http://jira.codehaus.org/browse/MNG-2054 -Original Message- From: Howard Lewis Ship [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006 4:05 PM To: users@maven.apache.org Subject: Overriding parent plugin configuration i

Re: [m2] m2eclipse system requirements

2006-02-25 Thread Mang Jun Lau
Hi, I think it's supposed to work on Eclipse 3.1.x. _Mang Lau Adrian Herscu <[EMAIL PROTECTED]> Sent by: news <[EMAIL PROTECTED]> 02/24/2006 12:25 PM Please respond to "Maven Users List" To users@maven.apache.org cc Subject [m2] m2eclipse system requirements Hi all, Couldn't fin

Re: Maven2 plugin for validating XML?

2006-02-25 Thread Tim Dysinger
I'd take any of them, but specifically, I'm looking for the last one XML against a XSD. On Feb 22, 2006, at 11:52 AM, Wayne Fay wrote: Validating XML as in... Well formed test? XML data compiles with DTD test? XML schema complies with defined XSD test? another test? What **exactly** are you