invoker tests using multiple maven versions

2018-11-26 Thread Matthieu BROUILLARD
Hi all, I would like to know the best ways to test a plugin against different maven versions? Especially is there a way to run maven-invoker-plugin using different maven versions? I can think of some scripting for CI and usage of wrapper but I wanted to know how people do currently. Thanks.

RE: [maven] Security Questions - Maven

2018-11-26 Thread Jason Pyeron
See responses inline. > -Original Message- > From: Jack O'Connor [mailto:jackoc...@verizon.net] > Sent: Monday, November 26, 2018 9:11 PM > To: users@maven.apache.org > Subject: [maven] Security Questions - Maven > > Hello, > > > > My company is considering using Apache Maven but I

Security Questions - Maven

2018-11-26 Thread Jack O'Connor
Hello, My company is considering using Apache Maven but I need some answers to some security questions. I hope someone out there can help me out. 1) Is the software compliant with U.S. Federal Information Processing Standard (FIPS) 140-2? 2) Is any third party software bundled with the

Re: Security Questions - Maven

2018-11-26 Thread Bernd Eckenfels
Hello, > 1) Is the software compliant with U.S. Federal Information Processing Standard (FIPS) 140-2? Maven is a modular open source, there is no single „Maven“ Body of work. When you use it, It dynamically uses plugins from various Sources, so it is hard to answer General Questions About ist

Re: invoker tests using multiple maven versions

2018-11-26 Thread Matthieu BROUILLARD
Thank you, I will go for the CI solution for now. Matthieu

Re: invoker tests using multiple maven versions

2018-11-26 Thread Mirko Friedenhagen
Hello Matthieu, I always enforce using different versions in the CI. Sample for Travis: * https://github.com/1and1/ono-maven-shared/blob/master/.travis.yml - (uses Maven Wrapper) Sample for GitLab: *

Re: Running a plugin only once after the whole build pass

2018-11-26 Thread Thomas Broyer
This needs to be built into the plugin that will do the aggregation. The mojo needs to be marked as being an "aggregator": https://maven.apache.org/developers/mojo-api-specification.html On Mon, Nov 26, 2018 at 12:55 PM Neeraj Mahajan wrote: > Hi , > > I have multi module project and each

Re: invoker tests using multiple maven versions

2018-11-26 Thread Robert Scholte
Right, it is now often solved with the CI server. However, if somebody implements MINVOKER-100[1], then we could solve it within the maven-invoker-plugin. thanks, Robert [1] https://issues.apache.org/jira/browse/MINVOKER-100 On Mon, 26 Nov 2018 16:00:46 +0100, Mirko Friedenhagen wrote:

Running a plugin only once after the whole build pass

2018-11-26 Thread Neeraj Mahajan
Hi , I have multi module project and each module produces a text file after the end of package phase. My requirement is to aggregate those text files and generate/print a summary from the aggregated text file at the end of maven build. Could you please suggest how I can achieve this in maven