Re: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread Benson Margulies
I don't believe that this is a viable scheme. Maven source artifacts are not generally buildable, but are aimed at IDEs for debugging visibility. You can't trust the SVM info, and you don't know what -P/-D options were used to make the binary. We would need a new train of metadata. This will only

Re: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread Tamás Cservenák
While Benson is right about -source artifacts (not meant for rebuilding), this resembles me to M2E's Project Materialisation, where based on POM of the given project (is fetched during dependency resolution), and IF the SCM metadata are okay, etc, the project tag is checked out into workspace

Re: How to separately configure each Mojo of a plugin executed from command line?

2014-02-26 Thread Anders Hammar
Don't think it's possible. I guess the idea is that if you have the same parameter in multiple goals, they would have the same configuration. If the parameter is configurable from command-line (thourgh a property), you could do it that way instead. Maybe not what you want, but it would work.

Re: How to separately configure each Mojo of a plugin executed from command line?

2014-02-26 Thread Stephen Connolly
Ahh yes. It won't work because you can only have one default-cli. There are ways around but they get tricky and are rather hacky. Any reason why you can't just type mvn release:clean -DsomeProperty=... mvn release:prepare -DsomeProperty=... mvn release:perform -DsomeProperty=... On 26

RE: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread Martin Gainty
From: ta...@cservenak.net Date: Wed, 26 Feb 2014 12:26:48 +0100 Subject: Re: Google Summer of Code - Java opportunity, mentors needed To: users@maven.apache.org While Benson is right about -source artifacts (not meant for rebuilding), this resembles me to M2E's Project

RE: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread James Nord (jnord)
Nowhere in that was the sources jar mentioned - yet you seemed to have jumped directly to a solution and then said can’t be done. There is a critical need for this inside businesses as well as Debian (how do we know that org.foobar:baz:1.2.3:jar is MIT as it claims and doesn’t contain some

Re: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread Benson Margulies
On Wed, Feb 26, 2014 at 9:16 AM, James Nord (jnord) jn...@cisco.com wrote: Nowhere in that was the sources jar mentioned - yet you seemed to have jumped directly to a solution and then said can’t be done. No, I discussed the two paths from the POM: -sources and scm/ There is a critical need

RE: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread James Nord (jnord)
Nowhere in that was the sources jar mentioned - yet you seemed to have jumped directly to a solution and then said can’t be done. No, I discussed the two paths from the POM: -sources and scm/ My mistake, sorry. There is a critical need for this inside businesses as well as Debian (how

Re: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread Daniel Pocock
On 26/02/14 17:17, James Nord (jnord) wrote: Nowhere in that was the sources jar mentioned - yet you seemed to have jumped directly to a solution and then said can’t be done. No, I discussed the two paths from the POM: -sources and scm/ My mistake, sorry. There is a critical need for

Findbugs doesn't check unit tests

2014-02-26 Thread Eric Kolotyluk
I added the following to my POM reporting plugins plugin groupIdorg.codehaus.mojo/groupId artifactIdfindbugs-maven-plugin/artifactId version2.5.3/version configuration effortMax/effort thresholdLow/threshold /configuration

Re: Findbugs doesn't check unit tests

2014-02-26 Thread Barrie Treloar
On 27 February 2014 09:05, Eric Kolotyluk eric.koloty...@gmail.com wrote: I added the following to my POM reporting plugins plugin groupIdorg.codehaus.mojo/groupId artifactIdfindbugs-maven-plugin/artifactId version2.5.3/version configuration

Re: Findbugs doesn't check unit tests

2014-02-26 Thread Eric Kolotyluk
Yup, that does the trick. Thanks. My bad for not checking the plugin page more thoroughly. Cheers, Eric On 2/26/2014 3:34 PM, Barrie Treloar wrote: On 27 February 2014 09:05, Eric Kolotyluk eric.koloty...@gmail.com wrote: I added the following to my POM reporting plugins

RE: Google Summer of Code - Java opportunity, mentors needed

2014-02-26 Thread Martin Gainty
From: jn...@cisco.com To: users@maven.apache.org Subject: RE: Google Summer of Code - Java opportunity, mentors needed Date: Wed, 26 Feb 2014 16:17:29 + Nowhere in that was the sources jar mentioned - yet you seemed to have jumped directly to a solution and then said can’t be