Problem while getting injected parameters from plugin configuration.

2014-09-21 Thread animator
te on this plugin I have following configuration: ... com.blah.bla animator-maven-plugin 1.0-SNAPSHOT src/main/clojure ...

Re: Problem while getting injected parameters from plugin configuration.

2014-09-21 Thread animator
Yes, of course, plugin: https://github.com/lgadawski/cloverage-maven-plugin , test project: https://github.com/lgadawski/test-polyglot-project Mojo class: https://github.com/lgadawski/cloverage-maven-plugin/blob/master/src/main/java/com/gadawski/maven/plugins/cloverage/goals/InstrumentMojo.java

Re: Problem while getting injected parameters from plugin configuration.

2014-09-21 Thread animator
Thanks for answers! I removed reporting section and unfortunately it doesn't work.. (*1)(btw. before that I added reporting api and declared InstrumentMojo extends AbstractMavenReport but this doesn't work too). I suppose may be there is problem with plexus, because when I added Component annot

Re: Problem while getting injected parameters from plugin configuration.

2014-09-22 Thread animator
The main problem from the topic finally I managed to resolve. The problem was wrong configuration in test-polyglot-project, the groupId of declared plugin in pom was wrong and when the goal was executed it was used plugin from local repository and any configuration from pom was omitted.. Anyway tha

Re: Problem while getting injected parameters from plugin configuration.

2014-09-23 Thread animator
Thank You @Stuart McCulloch (and others that helped me in this topic)! Your explanation is very valuable and resolved my problems :) Regards, animator. -- View this message in context: http://maven.40175.n5.nabble.com/Problem-while-getting-injected-parameters-from-plugin-configuration

Integrate Maven Site reporting with maven plugin that externally create report html page.

2014-11-26 Thread animator
I'm developing maven plugin (https://github.com/lgadawski/cloverage-maven-plugin). This plugin produces code coverage report for clojure sources from project. This report (html page) is generated by cloverage (clojure library as dependency in my maven plugin). The problem is that I would like to li

Re: Integrate Maven Site reporting with maven plugin that externally create report html page.

2014-12-02 Thread animator
Thx @Herve BOUTEMY for answer, but when I override isExternal() to return true nothing changes.. The same report generation is invoked after executing 'mvn site'. I spent hours and couldn't find, but may be is it possible to reference concrete report link in site reporting section? e.g. '${project}

Re: Integrate Maven Site reporting with maven plugin that externally create report html page.

2014-12-02 Thread animator
Yes that't true and I get my report being generated. But after that I would like to embed link to my externally created report in site reporting section.. So firstly I execute 'mvn site'. Because I declared my plugin in reporting section my Mojo that extends AbstractMavenReport is invoked and crea

Re: Integrate Maven Site reporting with maven plugin that externally create report html page.

2014-12-04 Thread animator
Here is my mojo: https://github.com/lgadawski/cloverage-maven-plugin/blob/master/src/main/java/com/gadawski/maven/plugins/cloverage/goals/HtmlMojo.java which, as U can see, extends following class: https://github.com/lgadawski/cloverage-maven-plugin/blob/master/src/main/java/com/gadawski/maven/p

Re: Integrate Maven Site reporting with maven plugin that externally create report html page.

2014-12-08 Thread animator
Thank U so much! -- View this message in context: http://maven.40175.n5.nabble.com/Integrate-Maven-Site-reporting-with-maven-plugin-that-externally-create-report-html-page-tp5817068p5818389.html Sent from the Maven Developers mailing list archive at Nabble.com.