Maven Release Plugin and Java 8 issue

2014-08-31 Thread Vijaysenthil Veeriah
Hi I apologize I'm kind of new to maven and I cant figure out how get the Maven Release plugin to work for a Java 8 project. I'm using maven release plugin version 2.5 (The maven compiler plugin version is 3.1) . When i just use the compiler plugin and do a compile it works fine, n fact i can

Re: Decorating Mojos

2014-08-31 Thread William Ferguson
Thanks Guys, Jason, I think the maven-timeline solution will be perfect. William On Sun, Aug 31, 2014 at 10:47 PM, Jason van Zyl wrote: > Like I said it was a bit of a mess. There is also the technique used in > the maven-timeline-plugin where you can use an execution listener: > > > https://

[GitHub] maven-plugins pull request: PMD Plugin Updates

2014-08-31 Thread hazendaz
GitHub user hazendaz opened a pull request: https://github.com/apache/maven-plugins/pull/28 PMD Plugin Updates Now that pmd plugin requires java 6, add types to lists and @Override annotations. Additionally update some of the dependencies used by this module to more recent version

[RESULT] [VOTE] Release Apache Maven Install Plugin Version 2.5.2

2014-08-31 Thread Karl Heinz Marbaise
Hi, The vote has passed with the following result: +1 (binding): Karl-Heinz Marbaise, Robert Scholte, Olivier Lamy, Hervé Boutemy +1 (non binding): none I will promote the artifacts to the central repo. Kind regards Karl-Heinz Marbaise

[RESULT] [VOTE] Release Apache Maven Deploy Plugin Version 2.8.2

2014-08-31 Thread Karl Heinz Marbaise
Hi, The vote has passed with the following result: +1 (binding): Karl-Heinz Marbaise, Robert Scholte, Olivier Lamy, Hervé Boutemy +1 (non binding): none I will promote the artifacts to the central repo. Kind regards Karl-Heinz Marbaise ---

Re: Decorating Mojos

2014-08-31 Thread Jason van Zyl
Like I said it was a bit of a mess. There is also the technique used in the maven-timeline-plugin where you can use an execution listener: https://github.com/dgageot/maven-timeline/blob/master/src/main/java/net/gageot/maven/buildevents/BuildEventListener.java This can be loaded from the POM. On

Re: Decorating Mojos

2014-08-31 Thread Jason van Zyl
William, If you just want to know what Mojos are being used then there are a couple implementations for profiling[1][2] but they use EventSpies which means they have to be installed in the distribution being used in order to be activated. We had a brief discussion a few months ago about making

Re: Decorating Mojos

2014-08-31 Thread Robert Scholte
Hi William, I would probably start with aspects. These are post-processors, so you need to run them as part of your build lifecycle. See http://mojo.codehaus.org/aspectj-maven-plugin/ how to use aspectj. I think we can think of a runtime solution as well, but that would be much more complica