[ANN] dependencypath Maven Plugin 1.1.0 Released

2011-12-06 Thread Pino Silvaggio
dependencypath-maven-plugin (avaliable from the Maven central repository) Documentation: http://bitstrings.github.com/sites/dependencypath-maven-plugin github: https://github.com/bitstrings/dependencypath-ma

Re: Mvn Not Returning Error

2011-12-06 Thread Eric Fetzer
Good catch, I thought failonerror defaulted to true in exec. Thanks! On Dec 6, 2011, at 3:21 PM, Wayne Fay wrote: >> [exec] Result: 1 >> [echo] Finished compile > > That looks like a return of 1 to me. Why do you think it returned a 0? > > Are you missing failonerror="true" or resul

Re: Mvn Not Returning Error

2011-12-06 Thread Stephen Connolly
the line [exec] Result 1 is coming from Ant and saying mvn returned exit code 1 which is mvn saying i had an error looks like an issue with your ant tasks, maven is doing what you ask - Stephen --- Sent from my Android phone, so random spelling mistakes, random nonsense words and other

Re: Generate report PDF with Maven PDF Plugin

2011-12-06 Thread 4ndrew
Another question. Sadly I can't use Maven2 to generate the test reports but I'd like to solve this issue with Maven3. Can you suggest me anything which is compatible with Maven3 and can be used to generate PDF Test reports and Doc? Any suggestion or hint would be appreciated ;) Many thanks!! -An

Re: Mvn Not Returning Error

2011-12-06 Thread Wayne Fay
> [exec] Result: 1 > [echo] Finished compile That looks like a return of 1 to me. Why do you think it returned a 0? Are you missing failonerror="true" or resultproperty in your Ant exec statement? Wayne - To unsubscri

Mvn Not Returning Error

2011-12-06 Thread Eric Fetzer
Yesterday, I had a test fail and fail out a build, but it didn't return to ant a bad return code.  Here's what I have:   Ant call to maven:             Maven call to tests:           org.apache.maven.plugins   

Re: Unrepeatable (sort of) dependency issues with a war dependency

2011-12-06 Thread Benson Margulies
This turned out to be a stupid error in the parent of a, which I had fixed once and somehow got reverted. Sorry about the noise. On Tue, Dec 6, 2011 at 9:13 AM, Benson Margulies wrote: > Using maven 3.0.3 (as well as 2.2.1). > >    a >  -- >  |     | >  b   c > > Pom for a lists b and c as mo

Duplicate plugin entries in effective POM

2011-12-06 Thread Raffa News
Hi, we are currently upgrading our projects from Maven 2.2.1 to Maven 3.0.3. At the moment we are running in some problems which involve duplicate entries for the Maven Dependency Plugin(Version 2.2) in the effective POM. Inside a profile 'xyz' we definded the Maven-Dependency-Plugin. The con

Re: spring handlers

2011-12-06 Thread jackett_dad
Thanks for the ideas--I'll have to look into scripting for the future in order to be robust enough to always have the right entries in spring.handlers and spring.schemas. The shade plugin actually wasn't being invoked as I thought it was because I wasn't calling the package target. When I did, th

Unrepeatable (sort of) dependency issues with a war dependency

2011-12-06 Thread Benson Margulies
Using maven 3.0.3 (as well as 2.2.1). a -- | | b c Pom for a lists b and c as modules. b is packaging=war. c is packaging=jar. c's dependencies include: b ${project.version} war C has an invocation of assembly:single. The descriptor includes: ${ar

Re: Custom formatter with PMD plugin not working..

2011-12-06 Thread marceloverdijk
Thanks Olivier, I already tried this before but initially this did not work. After adding the dependency explicitly to the maven pmd plugin it worked. Next step for me is to figure out how to use this custom renderer only for a certain maven profile. -- View this message in context: http://mav

Re: spring handlers

2011-12-06 Thread jackett_dad
Dirk, I've never done any groovy scripting, but it looks like it is time to learn. I'm going to adapt what you have provided here. Thanks. Scott -- View this message in context: http://maven.40175.n5.nabble.com/spring-handlers-tp5048978p5052063.html Sent from the Maven - Users mailing list ar

Re: Maven Native Pluging Problem when building

2011-12-06 Thread Satya
Hi Dan, Thanks for reply, I figured out that somehow *_MSC_VER* is not defined. Can you help on this. Any common problem why this would happen. Thanks, Satya -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Native-Pluging-Problem-when-building-tp5042408p5051885.html Se

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-06 Thread Stephen Connolly
Well it's more this kind of thing: http://stackoverflow.com/questions/2620961/maven-plugin-for-generating-iso-file [Bart if you are actually subscribed to users@m.a.o shame on you for not asking here] If you want to know the true level of insanity w.r.t. that question... Bart, at the time he ask

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-06 Thread Ken Egervari
Well, I apologize for not putting this new question here first. I didn't want to have two concurrent questions going on at the same time here, and I was thinking that perhaps I would figure this css problem before then. Ken On Tue, Dec 6, 2011 at 5:08 AM, Stephen Connolly < stephen.alan.conno...

Re: Custom formatter with PMD plugin not working..

2011-12-06 Thread Olivier Lamy
Hello, The best could be moving your custom renderer to a separate artifact (as it you will able to share/use it in other projects). And add this new artifact in the dependencies section of the plugin. Just an idea (not tested :-) ) 2011/12/6 marceloverdijk : > I'm trying to use a custom rendered

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-06 Thread Stephen Connolly
I personally despise this habit people have of posting on stackoverflow rather than emailing users@maven.a.o first... Seriously, forget karma on stackoverflow, if the answer is important to you, ask on users@maven.a.o first -Stephen On 6 December 2011 09:40, Ken Egervari wrote: > I hope someon

Re: YUI Compressor Maven plugin executed at wrong time and tomcat plugin not using yui-compressor output

2011-12-06 Thread Ken Egervari
I hope someone can help too. This one has me stuck. I put a post up on stackoverflow.com if anyone wants to answer it there for credit: http://stackoverflow.com/questions/8373941/maven-yui-compressor-plugin-cannot-create-aggregation-given-a-longer-path Ken On Mon, Dec 5, 2011 at 8:07 AM, Steph

Re: Snapshot Deployment Best Practices

2011-12-06 Thread Anders Hammar
This the wrong list for helping you with Team City and Nexus. I suggest you talk to some Team City people or possibly Nexus people; we're Maven people. /Anders On Mon, Dec 5, 2011 at 17:39, prakyat wrote: > Hey, > > I am a novice in Continuous Integration. Please can you list out a few > steps on

Custom formatter with PMD plugin not working..

2011-12-06 Thread marceloverdijk
I'm trying to use a custom rendered with the PMD plugin like: org.apache.maven.plugins maven-pmd-plugin 2.6 my.company.MyRenderer The my.company.MyRenderer is part of the project's sources. When I run mvn pmd:pmd I get a ClassNotFoundException. I wonder what the