Re: Truncating SCM/Git URL for tagging only

2014-05-13 Thread Baptiste Mathus
Which version of the maven release plugin are you using? I'd check with at least 2.4.2 or 2.5 since known issues with Git have been fixed in those versions. Le 13 mai 2014 03:07, Neil Hunt neil.h...@fcc.gov a écrit : For some reason, when running maven release, it is giving me an invalid URL

How to include images in a site via a report

2014-05-13 Thread Simone Tripodi
Hi all mates, I am developing a new set of reports for Apache Felix and I would like to include nice icons in order to improve the l'n'f of produced data, one thing I didn't catch is how to copy images included in my plugin artifact to the target site. Any suggestion will be paid back in beers

Re: How to avoid checking parent project in maven-site-plugin

2014-05-13 Thread Ron Wheeler
To get it working make a copy of the parent with the stuff that you need. This will at least tell you if you are on the right track and perhaps give you the settings that you need to override in the module pom. Ron On 12/05/2014 5:16 AM, Dariusz Jurojc wrote: I have small maven project. I'm

Re: How to include images in a site via a report

2014-05-13 Thread Hervé BOUTEMY
Hi Simo, The maven-shanges-plugin does such a thing [1] Now, let's talk about about the beers... Regards, Hervé [1] http://maven.apache.org/plugins/maven-changes-plugin/xref/org/apache/maven/plugin/changes/ChangesMojo.html#L461 Le mardi 13 mai 2014 00:29:04 Simone Tripodi a écrit : Hi all

Re: How to avoid checking parent project in maven-site-plugin

2014-05-13 Thread Ron Wheeler
I am not sure what you mean by can't. You can make any POM you want. You could start by having Maven give you the effective pom from your project. You could save that and make the changes that you require to get your site produced to that pom as a standalone project . Once you have this

Using plugins from the command line that come not from maven central

2014-05-13 Thread Jens Reimann
Hi, I want to execute a project-less maven plugin from the command line. However the plugin is not in maven central and I cannot place the plugin repository in the settings.xml file. Now I can use the dependency:get plugin to fetch the plugin from the remote repository into my local repository.

Re: Wagon extensions not available from AbstractMavenLifecycleParticipant or maven-dependency-tree?

2014-05-13 Thread William Ferguson
Anyone? On Mon, May 12, 2014 at 8:58 PM, William Ferguson william.fergu...@xandar.com.au wrote: I have a MavenLifecycleParticipant in my plugin. It uses maven-dependency-tree to resolve some deps that we need to do extra processing on. It works fine if the deps are in the local repo. But

Re: How to avoid checking parent project in maven-site-plugin

2014-05-13 Thread Dariusz Jurojć
I can't do it - as I said - I'm only writing extension to very big project which is not mine. And I have to use pom from that big project. And that pom has it's own parent and so on... I can't copy and modify all of them. I just want to create site with some reports for my project regardless of

Re: How to avoid checking parent project in maven-site-plugin

2014-05-13 Thread Paul Benedict
You need to have the parent projects available to you in your remote or local repository. You can't build with them missing because the parent has configuration which you project (the child) depends upon. On May 14, 2014 12:48 AM, Dariusz Jurojć dariusz.jur...@daprog.pl wrote: I can't do it - as