Re: Single Git repo,multiple independent releasable folders using release plugin??

2016-06-25 Thread Dan Tran
Hi Benson,

Could you please elaborate more details?

Sounds like you have this working which is a good news.  I very prefer one
single repo

Thanks

-Dan

On Sun, Jun 19, 2016 at 4:14 AM, Benson Margulies 
wrote:

> You don't put it in the URL.
>
> subdir/pom.xml
>
>
>
> On Fri, Jun 17, 2016 at 10:21 PM, Dan Tran  wrote:
> > Hi
> >
> > I would like to host multiple multi-module maven projects, each project
> has
> > its own top level folder
> > under same GIT repository
> >
> > is it possible to release each project using maven release plugin?, if
> so,
> > what would be SCM URL for each folder?
> >
> > Advice are greatly appreciated.
> >
> > -Dan
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>


own Maven Site plugin

2016-06-25 Thread Philipp Kraus
Hello,

I try to build my first Maven site plugin.
I have defined a class based on AbstractMojo and
put the annotation @Mojo( name = "rrd-antlr4", defaultPhase = 
LifecyclePhase.SITE )
on top.

I overload the execute-method and put my plugin content to the method. I build 
the plugin and deploy
it my local Maven repository. I’m testing my plugin in a testing project with 
the pom content





de.flashpixx
rrd-antlr4
0.1.0

…..

If I run "mvn site“ I get "[INFO] configuring report plugin 
de.flashpixx:rrd-antlr4:0.1.0“ but
the execute method is not run / called.

How I can debug the plugin or fix the execution of the plugin?

Thanks

Phil