Re: [VOTE] Release Apache Maven Compiler Plugin version 3.3

2015-03-25 Thread Olivier Lamy
+1 On 24 March 2015 at 05:45, Karl Heinz Marbaise wrote: > Hi, > > We solved 5 issues: > http://jira.codehaus.org/secure/ReleaseNote.jspa? > projectId=11130&version=20684 > > There are still a couple of issues left in JIRA: > http://jira.codehaus.org/issues/?jql=project%20%3D% > 20MCOMPILER%20AN

[GitHub] maven-surefire pull request: Run individual methods with junit48

2015-03-25 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/maven-surefire/pull/75 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

[GitHub] maven-surefire pull request: [SUREFIRE] Run individual methods wit...

2015-03-25 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/maven-surefire/pull/83 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

Re: maven-release-plugin does not build cleanly - M2_HOME is missing

2015-03-25 Thread Mirko Friedenhagen
Hello there, I now have a workaround. I am setting: ${maven.home} in maven-release-manager/pom.xml and use this to set: releaseEnvironment.setMavenHome( new File( System.getProperty( "injectedMavenHome" ) ) ); in the testcase. Works fine from the command line. Regards Mirko -- http://illegals

Re: maven-release-plugin does not build cleanly - M2_HOME is missing

2015-03-25 Thread Bernd Eckenfels
Am Wed, 25 Mar 2015 21:01:53 +0100 schrieb Mirko Friedenhagen : > - however this will not help with IDEs like Eclipse or Intellij which > use their own code to invoke stuff. I guess it is better when you pass it as a system property: -Dmaven.home="${M2_HOME}" that way you dont need to export it

Re: maven-release-plugin does not build cleanly - M2_HOME is missing

2015-03-25 Thread Karl Heinz Marbaise
Hi Mirko, On 3/25/15 9:31 PM, Mirko Friedenhagen wrote: What I do not understand is, that https://builds.apache.org/view/All/job/maven-release/261/consoleFull is just running fine with Maven 3.0.5. Two wild guesses: - it is because we do not use a Jenkins freestyle job but a beloved by Stephen ;

Re: maven-release-plugin does not build cleanly - M2_HOME is missing

2015-03-25 Thread Mirko Friedenhagen
What I do not understand is, that https://builds.apache.org/view/All/job/maven-release/261/consoleFull is just running fine with Maven 3.0.5. Two wild guesses: - it is because we do not use a Jenkins freestyle job but a beloved by Stephen ;-) Maven job. - or maybe something changed with shellshock,

Re: [VOTE] Release Apache Maven Compiler Plugin version 3.3

2015-03-25 Thread Daniel Kulp
+1 Dan > On Mar 25, 2015, at 4:10 PM, Karl Heinz Marbaise wrote: > > Hi, > > here is my +1. > > Two more binding VOTE's needed. > > Kind regards > Karl Heinz Marbaise > > On 3/23/15 7:45 PM, Karl Heinz Marbaise wrote: >> Hi, >> >> We solved 5 issues: >> http://jira.codehaus.org/secure/Re

Re: maven-release-plugin does not build cleanly - M2_HOME is missing

2015-03-25 Thread Mirko Friedenhagen
Unfortunately, we may not use Assume in this testcase because it is derived from PlexusTestcase and this one does fail on AssumptionViolated as well. As a dirty workaround we could just return when System.getenv("M2_HOME") is null. Regards Mirko -- http://illegalstateexception.blogspot.com/ https:/

Re: [VOTE] Release Apache Maven Compiler Plugin version 3.3

2015-03-25 Thread Jason van Zyl
+1 On Mar 25, 2015, at 4:10 PM, Karl Heinz Marbaise wrote: > Hi, > > here is my +1. > > Two more binding VOTE's needed. > > Kind regards > Karl Heinz Marbaise > > On 3/23/15 7:45 PM, Karl Heinz Marbaise wrote: >> Hi, >> >> We solved 5 issues: >> http://jira.codehaus.org/secure/ReleaseNote.j

Re: [VOTE] Release Apache Maven Compiler Plugin version 3.3

2015-03-25 Thread Karl Heinz Marbaise
Hi, here is my +1. Two more binding VOTE's needed. Kind regards Karl Heinz Marbaise On 3/23/15 7:45 PM, Karl Heinz Marbaise wrote: Hi, We solved 5 issues: http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11130&version=20684 There are still a couple of issues left in JIRA: http://

Re: maven-release-plugin does not build cleanly - M2_HOME is missing

2015-03-25 Thread Mirko Friedenhagen
Hello, further inspection of the problem leads to a possible solution: - the shell script does retrieve M2_HOME, however, as it is not exported it is not available furtheron. - so a quick fix would be to export M2_HOME directly before invoking exec "$JAVACMD" ... - however this will not help with