Re: File lock problem in custom Maven Reporting Plugin

2012-12-20 Thread Baptiste Gaillard
Hi Olivier, I've created a JIRA issue here http://jira.codehaus.org/browse/MSHARED-269with two project used to reproduce the problem. Thanks for the help guys, Baptiste 2012/12/19 Olivier Lamy ol...@apache.org Can you create a jira entry with a sample ? 2012/12/18 Baptiste Gaillard

Re: File lock problem in custom Maven Reporting Plugin

2012-12-19 Thread Olivier Lamy
Can you create a jira entry with a sample ? 2012/12/18 Baptiste Gaillard baptiste.gaill...@gomoob.com: Hi and thanks for the response, My Mojo already overwrites the isExternalReport() function and returns true into it. To deep a little more I've tried to debug the execution of the Mojo

Re: File lock problem in custom Maven Reporting Plugin

2012-12-18 Thread Baptiste Gaillard
Hi and thanks for the response, My Mojo already overwrites the isExternalReport() function and returns true into it. To deep a little more I've tried to debug the execution of the Mojo when running a 'mvn site' command using that Mojo. It seems that the function 'executeReport' associated to a

Re: File lock problem in custom Maven Reporting Plugin

2012-12-16 Thread Robert Scholte
This is probably what you need: from org.apache.maven.reporting.MavenReport.isExternalReport() /** * An external report is a report which calls a third party program which generates some reports too. * A good example is javadoc tool. * * @return tttrue/tt if this

File lock problem in custom Maven Reporting Plugin

2012-12-11 Thread Baptiste Gaillard
Hi, I'm currently creating a new Maven Reporting Plugin which integrate an external tool used to generate a Javascript documentation in my Maven Web Site. My report Mojo is very simple and is declared using : /** * @goal jsduck * @phase site */ public class JSDuckReportMojo extends