Re: [VOTE] Apache Maven SCM 1.9 (take 2)

2013-12-30 Thread Robert Scholte
Personally I think it is important that the source-releases.zip can at  
least be built somewhere. The more the better of course. If Windows isn't  
the right OS, then that's fine for me.


@Domi, if nobody sees any blockers, could you start a take 3?

thanks,

Robert

Op Fri, 27 Dec 2013 10:00:07 +0100 schreef Dominik Bartholdi  
:



Hi Robert,

I had a go too,
on Mac everything is OK -
but on Win with SVN 1.8.5 the maven-scm-plugin failed to create the  
repository :(


regards Domi

On 24.12.2013, at 22:26, Robert Scholte  wrote:


Hi,

I've fixed SCM-737, which means that the source-releases.zip should  
match all the files project files again.
If I'm correct this means that the reason for the -1 vote has been  
solved.


However, on my Windows machine I don't get the test for the  
maven-scm-plugin to succeed.

The svnadmin fails to create/load a repository.
I've tried svn 1.6, 1.7 and 1.8, all failing with equivalent failures.

Could somebody else verify the current trunk?

thanks,

Robert

Op Tue, 03 Dec 2013 03:10:39 +0100 schreef Hervé BOUTEMY  
:



http://jira.codehaus.org/browse/SCM-737 created

Le mardi 3 décembre 2013 03:05:17 Hervé BOUTEMY a écrit :

+1

need to find a workaround for CVS provider unit tests later

Regards,

Hervé

Le lundi 2 décembre 2013 19:38:41 Olivier Lamy a écrit :
> Hi,
>
> We fixed 11 issues. The new feature is the jgit provider (based on  
jgit).

> Details:
>  
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10527&version=1

> 87 83
>
> Staging repository:
> https://repository.apache.org/content/repositories/maven-002/
>
> Staged site: http://maven.apache.org/scm-archives/scm-LATEST/
>
> Sources release:
>  
https://repository.apache.org/content/repositories/maven-002/org/apache/ma

> ve n/scm/maven-scm/1.9/maven-scm-1.9-source-release.zip
>
> Vote open for 72H
>
> [+1]
> [0]
> [-1]
>
> Thanks

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



JDK 8 Build 121 & JDK 7 Update 60 build 02 are available on java.net

2013-12-30 Thread Rory O'Donnell Oracle, Dublin Ireland

Hi,

I am from the OpenJDK QA group at Oracle, and I'm trying to get an idea 
about how much community
testing is happening on JDK 8 EA builds (either those published by 
Oracle, or your own) and to encourage
more of it to happen see: 
http://mail.openjdk.java.net/pipermail/quality-discuss/2013-November/000152.html 



I'm curious if you have begun testing against JDK 8 or JDK 7u60 EA 
builds, if you've run into showstopper
issues, and if you'd like to continue to discuss the subject on the 
quality-discuss mailing list in OpenJDK,

of course.

I am aware of https://bugs.openjdk.java.net/browse/JDK-8030781 , if 
there are any other issues please let

me know.

JDK 8 Build b121 Early Access Build is now available for download 
 & test.
JDK 7u60 b02 Early Access Build is also available for download 
& test.


Rgds,Rory

--
Rgds,Rory O'Donnell
Quality Engineering Manager
Oracle EMEA , Dublin, Ireland



RE: Plugin phase awareness...

2013-12-30 Thread Robert Patrick
Seems to work properly with Maven 3.0.5 anyway.  See attached plugin and test 
project.


--
Robert Patrick 
VP, FMW Platform Architecture
Oracle Corporation  Office: +1.940.725.0011
1148 Triple Crown Court Fax: +1.940.725.0012
Bartonville, TX 76226, USA  Mobile: +1.469.556.9450

Professional Oracle WebLogic Server
by Robert Patrick, Gregory Nyberg, and Philip Aston
with Josh Bregman and Paul Done
Book Home Page: http://www.wrox.com/
Kindle Version: http://www.amazon.com/


-Original Message-
From: Martin Gainty [mailto:mgai...@hotmail.com] 
Sent: Sunday, December 29, 2013 7:25 PM
To: Maven Developers List
Subject: RE: Plugin phase awareness...


  


> From: mgai...@hotmail.com
> To: dev@maven.apache.org
> Subject: RE: Plugin phase awareness...
> Date: Sun, 29 Dec 2013 17:46:29 -0500
> 
> 
> 
> 
> 
> 
> > Date: Sun, 29 Dec 2013 15:13:12 +
> > Subject: Re: Plugin phase awareness...
> > From: stephen.alan.conno...@gmail.com
> > To: dev@maven.apache.org
> > 
> > Are you running the mojo directly in your testing by any chance?
> > 
> > Eg
> > 
> > mvn short-name:goal
> MG>Correct I was testing in this fashion
> 
> > As opposed to
> > 
> > mvn phase
> MG>Thanks Stephen I will try this out
MG_12_29_2013>
 /**
  * @parameter expression="${mojoExecution}"
  */
 @Parameter(defaultValue = "${mojoExecution}")  private 
org.apache.maven.plugin.MojoExecution execution; //supposedly mojoExecution 
injected here  public org.apache.maven.plugin.MojoExecution getExecution() { 
return execution; } //accessor for execution
 /**
  * @parameter expression="${mojoExecution.lifecyclePhase}"
  */
@Parameter(defaultValue = "${mojoExecution.lifecyclePhase}")
private String lifecyclePhase; //supposedly lifecyclePhase is injected here
public org.apache.maven.model.Plugin plugin=new 
org.apache.maven.model.Plugin();
public String getLifecyclePhase() { //accessor for lifecyclePhase
   if(lifecyclePhase==null) {
plugin.setGroupId("org.apache.maven.plugins");
plugin.setArtifactId("maven-compiler-plugin");
plugin.setVersion("3.1");
String goal="compile";
String executionId="executionId";
System.out.println("CompilerMojoTestCase::getLifecyclePhase 
goal="+goal+" executionId="+executionId);
org.apache.maven.plugin.MojoExecution mojo=new 
org.apache.maven.plugin.MojoExecution((org.apache.maven.model.Plugin)plugin, 
goal, executionId );
lifecyclePhase= mojo.getLifecyclePhase();
   }
  return lifecyclePhase;
 }

MG_12_29_2013>public void testCompilerBasic() throws Exception {
  System.out.println("CompilerMojoTestCase::testCompilerBasic LINE 143 
getLifeyclePhase()= "+getLifecyclePhase());

MG_12_29_2013>mvn -e -X -o process-test-classes 1> errors.lst 
MG_12_29_2013>CompilerMojoTestCase::getLifecyclePhase goal=compile 
executionId=executionId
MG_12_29_2013>CompilerMojoTestCase::testCompilerBasic LINE 143 
getLifeyclePhase()= null

MG_12_29_2013>My thinking is that lifecyclePhase is somehow not being injected..
MG_12_29_2013>Ideas?
> 
> > Because if the former, then the phase is null as the execution was 
> > not bound to a phase.
> > 
> > I have not used this specific property before, so cannot speak to 
> > whether it works when bound to a phase, but if your test plugin 
> > execution is not bound to a phase then you would not expect to see a 
> > non null value
> > 
> > On Sunday, 29 December 2013, Martin Gainty wrote:
> > 
> > > Morning All-
> > >
> > >
> > >
> > > Even after downloading maven-core 3.1.1 source and re-compiling to 
> > > new maven-core-3.1.1.jar distro and forcing maven-core-3.1.1 
> > > dependency into maven-surefire-plugin
> > >
> > >
> > > I could not get ${mojoExecution.lifecyclePhase} to display 
> > > anything other than null
> > >
> > >
> > > https://jira.codehaus.org/browse/MNG-
> > >
> > >
> > >
> > > Ideas?
> > >
> > > Martin --
> > > __
> > >
> > >
> > > Inte förändra och störa denna överföring
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > From: mgai...@hotmail.com 
> > > To: dev@maven.apache.org 
> > > Subject: RE: Plugin phase awareness...
> > > Date: Wed, 25 Dec 2013 22:40:07 -0500
> > >
> > >
> > >
> > >
> > > Wasted an enormous amount of time chasing the exact location of 
> > > .git file.. i guess its a good thing it was Christmas
> > >
> > > Thanks Jason!
> > > Martin Gainty
> > > __
> > >
> > >
> > >
> > >
> > >
> > > > From: jpye...@pdinc.us
> > > > To: dev@maven.apache.org
> > > > Subject: RE: Plugin phase awareness...
> > > > Date: Wed, 25 Dec 2013 10:52:34 -0500
> > > >
> > > > > -Original Message-
> > > > > From: Martin Gainty
> > > > > Sent: Wednesday, December 25, 2013 10:40
> > > > >
> > > > > bash>git clone
> > > > > bash>https://github.com/apache/maven/blob/maven-3.1.1/maven-co
> > > > > bash>re src
> > > > > Cloning into 'src'...
> > > > > fata

maven-enforcer pull request: [MENFORCER-169]

2013-12-30 Thread khmarbaise
GitHub user khmarbaise opened a pull request:

https://github.com/apache/maven-enforcer/pull/7

[MENFORCER-169]

  - Added unit test for RequireActiveProfile
  - Support of all option reactivated based on unit test.
  - Added documentation part and fixed link in index.apt.vm page.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/khmarbaise/maven-enforcer menforcer-169

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/maven-enforcer/pull/7.patch


commit 15b6fd076ff061e6e098f7bc77f7b7f63acbe6fa
Author: Karl Heinz Marbaise 
Date:   2013-12-30T15:57:29Z

[MENFORCER-169]
  - Added unit test for RequireActiveProfile
  - Support of all option reactivated based on unit test.
  - Added documentation part and fixed link in index.apt.vm page.




-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



RE: Plugin phase awareness...

2013-12-30 Thread Martin Gainty
 
Good Morning Patrick

could you upload plugin and test-harness somewhere (and let me have access).. I 
would really like to get this working
(and close out this bug)

Many Thanks for your help (and support)!
Martin Gainty 
__ 

Inte förändra och störa denna överföring tack


  


Date: Mon, 30 Dec 2013 07:46:49 -0800
From: robert.patr...@oracle.com
To: dev@maven.apache.org
Subject: RE: Plugin phase awareness...

Seems to work properly with Maven 3.0.5 anyway.  See attached plugin and test 
project.
 
 
--
Robert Patrick 
VP, FMW Platform Architecture
Oracle Corporation  Office: +1.940.725.0011
1148 Triple Crown Court Fax: +1.940.725.0012
Bartonville, TX 76226, USA  Mobile: +1.469.556.9450
 
Professional Oracle WebLogic Server
by Robert Patrick, Gregory Nyberg, and Philip Aston
with Josh Bregman and Paul Done
Book Home Page: http://www.wrox.com/
Kindle Version: http://www.amazon.com/
 
 
-Original Message-
From: Martin Gainty [mailto:mgai...@hotmail.com] 
Sent: Sunday, December 29, 2013 7:25 PM
To: Maven Developers List
Subject: RE: Plugin phase awareness...
 
 
  
 
 
> From: mgai...@hotmail.com
> To: dev@maven.apache.org
> Subject: RE: Plugin phase awareness...
> Date: Sun, 29 Dec 2013 17:46:29 -0500
> 
> 
> 
> 
> 
> 
> > Date: Sun, 29 Dec 2013 15:13:12 +
> > Subject: Re: Plugin phase awareness...
> > From: stephen.alan.conno...@gmail.com
> > To: dev@maven.apache.org
> > 
> > Are you running the mojo directly in your testing by any chance?
> > 
> > Eg
> > 
> > mvn short-name:goal
> MG>Correct I was testing in this fashion
> 
> > As opposed to
> > 
> > mvn phase
> MG>Thanks Stephen I will try this out
MG_12_29_2013>
 /**
  * @parameter expression="${mojoExecution}"
  */
 @Parameter(defaultValue = "${mojoExecution}")  private 
org.apache.maven.plugin.MojoExecution execution; //supposedly mojoExecution 
injected here  public org.apache.maven.plugin.MojoExecution getExecution() { 
return execution; } //accessor for execution
 /**
  * @parameter expression="${mojoExecution.lifecyclePhase}"
  */
@Parameter(defaultValue = "${mojoExecution.lifecyclePhase}")
private String lifecyclePhase; //supposedly lifecyclePhase is injected here
public org.apache.maven.model.Plugin plugin=new 
org.apache.maven.model.Plugin();
public String getLifecyclePhase() { //accessor for lifecyclePhase
   if(lifecyclePhase==null) {
plugin.setGroupId("org.apache.maven.plugins");
plugin.setArtifactId("maven-compiler-plugin");
plugin.setVersion("3.1");
String goal="compile";
String executionId="executionId";
System.out.println("CompilerMojoTestCase::getLifecyclePhase 
goal="+goal+" executionId="+executionId);
org.apache.maven.plugin.MojoExecution mojo=new 
org.apache.maven.plugin.MojoExecution((org.apache.maven.model.Plugin)plugin, 
goal, executionId );
lifecyclePhase= mojo.getLifecyclePhase();
   }
  return lifecyclePhase;
 }
 
MG_12_29_2013>public void testCompilerBasic() throws Exception {
  System.out.println("CompilerMojoTestCase::testCompilerBasic LINE 143 
getLifeyclePhase()= "+getLifecyclePhase());
 
MG_12_29_2013>mvn -e -X -o process-test-classes 1> errors.lst 
MG_12_29_2013>CompilerMojoTestCase::getLifecyclePhase goal=compile 
executionId=executionId
MG_12_29_2013>CompilerMojoTestCase::testCompilerBasic LINE 143 
getLifeyclePhase()= null
 
MG_12_29_2013>My thinking is that lifecyclePhase is somehow not being injected..
MG_12_29_2013>Ideas?
> 
> > Because if the former, then the phase is null as the execution was 
> > not bound to a phase.
> > 
> > I have not used this specific property before, so cannot speak to 
> > whether it works when bound to a phase, but if your test plugin 
> > execution is not bound to a phase then you would not expect to see a 
> > non null value
> > 
> > On Sunday, 29 December 2013, Martin Gainty wrote:
> > 
> > > Morning All-
> > >
> > >
> > >
> > > Even after downloading maven-core 3.1.1 source and re-compiling to 
> > > new maven-core-3.1.1.jar distro and forcing maven-core-3.1.1 
> > > dependency into maven-surefire-plugin
> > >
> > >
> > > I could not get ${mojoExecution.lifecyclePhase} to display 
> > > anything other than null
> > >
> > >
> > > https://jira.codehaus.org/browse/MNG-
> > >
> > >
> > >
> > > Ideas?
> > >
> > > Martin --
> > > __
> > >
> > >
> > > Inte förändra och störa denna överföring
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > From: mgai...@hotmail.com 
> > > To: dev@maven.apache.org 
> > > Subject: RE: Plugin phase awareness...
> > > Date: Wed, 25 Dec 2013 22:40:07 -0500
> > >
> > >
> > >
> > >
> > > Wasted an enormous amount of time chasing the exact location of 
> > > .git file.. i guess its a good thing it was Christmas
> > >
> > > Thanks Jason!
> > > Martin Gainty
> > > __
> > >
> > >
> >

maven-enforcer pull request: [MENFORCER-170|

2013-12-30 Thread khmarbaise
GitHub user khmarbaise opened a pull request:

https://github.com/apache/maven-enforcer/pull/8

[MENFORCER-170|

  - Refactored test code.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/khmarbaise/maven-enforcer menforcer-170

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/maven-enforcer/pull/8.patch


commit 81c6d703a64dfeda49ed832daa910364f8969e95
Author: Karl Heinz Marbaise 
Date:   2013-12-30T16:04:41Z

[MENFORCER-170|
  - Refactored test code.




-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



RE: Plugin phase awareness...

2013-12-30 Thread Robert Patrick
I had attached it to the last email but you can grab it here:  
https://dl.dropboxusercontent.com/u/78116035/maven/lifecycle-phase.zip 

Hope this helps,
Robert

--
Robert Patrick 
VP, FMW Platform Architecture
Oracle Corporation  Office: +1.940.725.0011
1148 Triple Crown Court Fax: +1.940.725.0012
Bartonville, TX 76226, USA  Mobile: +1.469.556.9450

Professional Oracle WebLogic Server
by Robert Patrick, Gregory Nyberg, and Philip Aston
with Josh Bregman and Paul Done
Book Home Page: http://www.wrox.com/
Kindle Version: http://www.amazon.com/


-Original Message-
From: Martin Gainty [mailto:mgai...@hotmail.com] 
Sent: Monday, December 30, 2013 10:02 AM
To: Maven Developers List
Subject: RE: Plugin phase awareness...

 
Good Morning Patrick

could you upload plugin and test-harness somewhere (and let me have access).. I 
would really like to get this working (and close out this bug)

Many Thanks for your help (and support)!
Martin Gainty
__ 

Inte förändra och störa denna överföring tack


  


Date: Mon, 30 Dec 2013 07:46:49 -0800
From: robert.patr...@oracle.com
To: dev@maven.apache.org
Subject: RE: Plugin phase awareness...

Seems to work properly with Maven 3.0.5 anyway.  See attached plugin and test 
project.
 
 
--
Robert Patrick  VP, FMW Platform Architecture
Oracle Corporation  Office: +1.940.725.0011
1148 Triple Crown Court Fax: +1.940.725.0012
Bartonville, TX 76226, USA  Mobile: +1.469.556.9450
 
Professional Oracle WebLogic Server
by Robert Patrick, Gregory Nyberg, and Philip Aston with Josh Bregman and Paul 
Done Book Home Page: http://www.wrox.com/ Kindle Version: http://www.amazon.com/
 
 
-Original Message-
From: Martin Gainty [mailto:mgai...@hotmail.com]
Sent: Sunday, December 29, 2013 7:25 PM
To: Maven Developers List
Subject: RE: Plugin phase awareness...
 
 
  
 
 
> From: mgai...@hotmail.com
> To: dev@maven.apache.org
> Subject: RE: Plugin phase awareness...
> Date: Sun, 29 Dec 2013 17:46:29 -0500
> 
> 
> 
> 
> 
> 
> > Date: Sun, 29 Dec 2013 15:13:12 +
> > Subject: Re: Plugin phase awareness...
> > From: stephen.alan.conno...@gmail.com
> > To: dev@maven.apache.org
> > 
> > Are you running the mojo directly in your testing by any chance?
> > 
> > Eg
> > 
> > mvn short-name:goal
> MG>Correct I was testing in this fashion
> 
> > As opposed to
> > 
> > mvn phase
> MG>Thanks Stephen I will try this out
MG_12_29_2013>
 /**
  * @parameter expression="${mojoExecution}"
  */
 @Parameter(defaultValue = "${mojoExecution}")  private 
org.apache.maven.plugin.MojoExecution execution; //supposedly mojoExecution 
injected here  public org.apache.maven.plugin.MojoExecution getExecution() { 
return execution; } //accessor for execution
 /**
  * @parameter expression="${mojoExecution.lifecyclePhase}"
  */
@Parameter(defaultValue = "${mojoExecution.lifecyclePhase}")
private String lifecyclePhase; //supposedly lifecyclePhase is injected here
public org.apache.maven.model.Plugin plugin=new 
org.apache.maven.model.Plugin();
public String getLifecyclePhase() { //accessor for lifecyclePhase
   if(lifecyclePhase==null) {
plugin.setGroupId("org.apache.maven.plugins");
plugin.setArtifactId("maven-compiler-plugin");
plugin.setVersion("3.1");
String goal="compile";
String executionId="executionId";
System.out.println("CompilerMojoTestCase::getLifecyclePhase 
goal="+goal+" executionId="+executionId);
org.apache.maven.plugin.MojoExecution mojo=new 
org.apache.maven.plugin.MojoExecution((org.apache.maven.model.Plugin)plugin, 
goal, executionId );
lifecyclePhase= mojo.getLifecyclePhase();
   }
  return lifecyclePhase;
 }
 
MG_12_29_2013>public void testCompilerBasic() throws Exception {
  System.out.println("CompilerMojoTestCase::testCompilerBasic LINE 143 
getLifeyclePhase()= "+getLifecyclePhase());
 
MG_12_29_2013>mvn -e -X -o process-test-classes 1> errors.lst 
MG_12_29_2013>CompilerMojoTestCase::getLifecyclePhase goal=compile 
executionId=executionId
MG_12_29_2013>CompilerMojoTestCase::testCompilerBasic LINE 143 
getLifeyclePhase()= null
 
MG_12_29_2013>My thinking is that lifecyclePhase is somehow not being injected..
MG_12_29_2013>Ideas?
> 
> > Because if the former, then the phase is null as the execution was 
> > not bound to a phase.
> > 
> > I have not used this specific property before, so cannot speak to 
> > whether it works when bound to a phase, but if your test plugin 
> > execution is not bound to a phase then you would not expect to see a 
> > non null value
> > 
> > On Sunday, 29 December 2013, Martin Gainty wrote:
> > 
> > > Morning All-
> > >
> > >
> > >
> > > Even after downloading maven-core 3.1.1 source and re-compiling to 
> > > new maven-core-3.1.1.jar distro and forcing maven-core-3.1.1 
> > > dependency into maven-surefire-plugin
> > >
> > >
> > >

maven-enforcer pull request: [MENFORCER-171]

2013-12-30 Thread khmarbaise
GitHub user khmarbaise opened a pull request:

https://github.com/apache/maven-enforcer/pull/9

[MENFORCER-171]

  - Added doc for requireEnvironmentVariable and link
from index.apt page.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/khmarbaise/maven-enforcer menforcer-171

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/maven-enforcer/pull/9.patch


commit cb916a0fbd66c14cf60838364626ef2fb38cf876
Author: Karl Heinz Marbaise 
Date:   2013-12-30T16:09:49Z

[MENFORCER-171]
  - Added doc for requireEnvironmentVariable and link
from index.apt page.




-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: JDK 8 Build 121 & JDK 7 Update 60 build 02 are available on java.net

2013-12-30 Thread Bernd Eckenfels

Hello Rory,

after having repeatingly problems in our WebStart Application (die to  
changed behaviour in Updates) I have tested with U60 and I havent seen any  
new problems compared to U45. I did not do server side (performance) tests  
yet.


With JDK8 I did only a  few smaller (default maven JAR phase based)  
compile tests (for example adding OracleJDK8 to the build environemnt  
matrix on Travis-CI.org - but without using -target 1.8). I havent seen  
problems in this area.


I think it is a but confusing that the manage site list dialog contains a  
textfield (which allows edit) when the list is empty but I guess thats not  
a critical problem.


Greetings
Bernd


Am 30.12.2013, 13:19 Uhr, schrieb Rory O'Donnell Oracle, Dublin Ireland  
:



Hi,

I am from the OpenJDK QA group at Oracle, and I'm trying to get an idea
about how much community
testing is happening on JDK 8 EA builds (either those published by
Oracle, or your own) and to encourage
more of it to happen see:
http://mail.openjdk.java.net/pipermail/quality-discuss/2013-November/000152.html


I'm curious if you have begun testing against JDK 8 or JDK 7u60 EA
builds, if you've run into showstopper
issues, and if you'd like to continue to discuss the subject on the
quality-discuss mailing list in OpenJDK,
of course.

I am aware of https://bugs.openjdk.java.net/browse/JDK-8030781 , if
there are any other issues please let
me know.

JDK 8 Build b121 Early Access Build is now available for download
 & test.
JDK 7u60 b02 Early Access Build is also available for download
& test.

Rgds,Rory




--
http://www.zusammenkunft.net

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



RE: wagon tests

2013-12-30 Thread Dan Beaulieu
Hi Benson, I'm the user that brought up releasing maven wagon. I'd like to help 
any way I can. I just cloned maven wagon from github and ran mvn clean install 
and all tests passed after multiple runs. I am using java 7 and maven 2.2.

I'm not sure what the build process is that you are running but if there is 
some documentation somewhere I'd be willing to try to reproduce locally and try 
to submit a fix.
Let me know.

Dan

-Original Message-
From: Benson Margulies [mailto:bimargul...@gmail.com] 
Sent: Sunday, December 29, 2013 8:17 PM
To: Maven Developers List
Subject: wagon tests

I ran one build of maven-wagon as a warmup for releasing. No problems.

All subsequent attempts have died in the http wagon tests, with a variety of 
failures.

Has anyone got some reliable way to run these builds?

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional 
commands, e-mail: dev-h...@maven.apache.org



RE: Plugin phase awareness...

2013-12-30 Thread Martin Gainty
operational with JDK-1.6 but compiling and running with Oracle Java 
version=1.7.0.25 reproduces the bug


JDK: 1.6

mvn -version=3.0.2

maven-core:3.0

maven-plugin-annotations:3.2

test-project>mvn -e -X -o compile

[INFO] [phase-name]  Maven lifecycle phase is compile (correct)


JDK: 1.6

mvn -version =3.0.5
maven-core:3.0

maven-plugin-annotations:3.2

test-project>mvn -e -X -o compile

[INFO] [phase-name] Maven lifecycle phase is compile (correct)

 

JDK: 1.6

mvn -version=3.1.1

maven-core:3.0

maven-plugin-annotations:3.2

test-project>mvn -e -X -o compile

[INFO] [phase-name] Maven lifecycle phase is compile (correct)

 

--JDK-1.7.0.25--
BASH>mvn -version
Apache Maven 3.0.2 (r1056850; 2011-01-08 19:58:10-0500)
Java version: 1.7.0_25, vendor: Oracle Corporation
Java home: jdk1.7.0_25/jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"


mvn -version=3.0.2

maven-core:3.0

maven-plugin-annotations:3.2

 

test-project>mvn -e -X -o compile

[INFO] [phase-name] Maven lifecycle phase is validate

 

i wonder if Mr Gosling could possibly shed some light on this ?

Thanks Robert,

Martin-

  



> Date: Mon, 30 Dec 2013 08:07:46 -0800
> From: robert.patr...@oracle.com
> To: dev@maven.apache.org
> Subject: RE: Plugin phase awareness...
> 
> I had attached it to the last email but you can grab it here: 
> https://dl.dropboxusercontent.com/u/78116035/maven/lifecycle-phase.zip 
> 
> Hope this helps,
> Robert
> 
> --
> Robert Patrick 
> VP, FMW Platform Architecture
> Oracle Corporation Office: +1.940.725.0011
> 1148 Triple Crown Court Fax: +1.940.725.0012
> Bartonville, TX 76226, USA Mobile: +1.469.556.9450
> 
> Professional Oracle WebLogic Server
> by Robert Patrick, Gregory Nyberg, and Philip Aston
> with Josh Bregman and Paul Done
> Book Home Page: http://www.wrox.com/
> Kindle Version: http://www.amazon.com/
> 
> 
> -Original Message-
> From: Martin Gainty [mailto:mgai...@hotmail.com] 
> Sent: Monday, December 30, 2013 10:02 AM
> To: Maven Developers List
> Subject: RE: Plugin phase awareness...
> 
> 
> Good Morning Patrick
> 
> could you upload plugin and test-harness somewhere (and let me have access).. 
> I would really like to get this working (and close out this bug)
> 
> Many Thanks for your help (and support)!
> Martin Gainty
> __ 
> 
> Inte förändra och störa denna överföring tack
> 
> 
> 
> 
> 
> Date: Mon, 30 Dec 2013 07:46:49 -0800
> From: robert.patr...@oracle.com
> To: dev@maven.apache.org
> Subject: RE: Plugin phase awareness...
> 
> Seems to work properly with Maven 3.0.5 anyway. See attached plugin and test 
> project.
> 
> 
> --
> Robert Patrick  VP, FMW Platform Architecture
> Oracle Corporation Office: +1.940.725.0011
> 1148 Triple Crown Court Fax: +1.940.725.0012
> Bartonville, TX 76226, USA Mobile: +1.469.556.9450
> 
> Professional Oracle WebLogic Server
> by Robert Patrick, Gregory Nyberg, and Philip Aston with Josh Bregman and 
> Paul Done Book Home Page: http://www.wrox.com/ Kindle Version: 
> http://www.amazon.com/
> 
> 
> -Original Message-
> From: Martin Gainty [mailto:mgai...@hotmail.com]
> Sent: Sunday, December 29, 2013 7:25 PM
> To: Maven Developers List
> Subject: RE: Plugin phase awareness...
> 
> 
> 
> 
> 
> > From: mgai...@hotmail.com
> > To: dev@maven.apache.org
> > Subject: RE: Plugin phase awareness...
> > Date: Sun, 29 Dec 2013 17:46:29 -0500
> > 
> > 
> > 
> > 
> > 
> > 
> > > Date: Sun, 29 Dec 2013 15:13:12 +
> > > Subject: Re: Plugin phase awareness...
> > > From: stephen.alan.conno...@gmail.com
> > > To: dev@maven.apache.org
> > > 
> > > Are you running the mojo directly in your testing by any chance?
> > > 
> > > Eg
> > > 
> > > mvn short-name:goal
> > MG>Correct I was testing in this fashion
> > 
> > > As opposed to
> > > 
> > > mvn phase
> > MG>Thanks Stephen I will try this out
> MG_12_29_2013>
> /**
> * @parameter expression="${mojoExecution}"
> */
> @Parameter(defaultValue = "${mojoExecution}") private 
> org.apache.maven.plugin.MojoExecution execution; //supposedly mojoExecution 
> injected here public org.apache.maven.plugin.MojoExecution getExecution() { 
> return execution; } //accessor for execution
> /**
> * @parameter expression="${mojoExecution.lifecyclePhase}"
> */
> @Parameter(defaultValue = "${mojoExecution.lifecyclePhase}")
> private String lifecyclePhase; //supposedly lifecyclePhase is injected here
> public org.apache.maven.model.Plugin plugin=new 
> org.apache.maven.model.Plugin();
> public String getLifecyclePhase() { //accessor for lifecyclePhase
> if(lifecyclePhase==null) {
> plugin.setGroupId("org.apache.maven.plugins");
> plugin.setArtifactId("maven-compiler-plugin");
> plugin.setVersion("3.1");
> String goal="compile";
> String executionId="executionId";
> System.out.println("CompilerMojoTestCase::getLifecyclePhase goal="+goal+" 
> execution

Re: wagon tests

2013-12-30 Thread Benson Margulies
Dan,

I've put a release out for a vote.

You can find it at:

Staging repo:
https://repository.apache.org/content/repositories/maven-029/
https://repository.apache.org/content/repositories/maven-029/org/apache/maven/wagon/wagon/2.6/wagon-2.6-source-release.zip

You can test and report in the vote thread on the dev list.

--benson


On Mon, Dec 30, 2013 at 2:03 PM, Dan Beaulieu
 wrote:
> Hi Benson, I'm the user that brought up releasing maven wagon. I'd like to 
> help any way I can. I just cloned maven wagon from github and ran mvn clean 
> install and all tests passed after multiple runs. I am using java 7 and maven 
> 2.2.
>
> I'm not sure what the build process is that you are running but if there is 
> some documentation somewhere I'd be willing to try to reproduce locally and 
> try to submit a fix.
> Let me know.
>
> Dan
>
> -Original Message-
> From: Benson Margulies [mailto:bimargul...@gmail.com]
> Sent: Sunday, December 29, 2013 8:17 PM
> To: Maven Developers List
> Subject: wagon tests
>
> I ran one build of maven-wagon as a warmup for releasing. No problems.
>
> All subsequent attempts have died in the http wagon tests, with a variety of 
> failures.
>
> Has anyone got some reliable way to run these builds?
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org For additional 
> commands, e-mail: dev-h...@maven.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



RE: Plugin phase awareness...

2013-12-30 Thread Robert Patrick
I don't have Maven 3.02 or Java 7u25 handy but as you can see from my example 
execution below, Maven 3.0.5 and Java 7u45 works fine-that is, multiple 
executions of the plugin in the different lifecycle phases that I have 
executions declared in my project POM for all return the same value as the 
lifecycle phase).

 

C:\rpatrick\work\src\maven\lifecycle-phase\test-project>mvn  -version

Apache Maven 3.0.5 (r01de14724cdef164cd33c7c8c2fe155faf9602da; 2013-02-19 07:51:

28-0600)

Maven home: c:\wls1213\oracle_common\modules\org.apache.maven_3.0.5

Java version: 1.7.0_45, vendor: Oracle Corporation

Java home: c:\java\jdk1.7.0\jre

Default locale: en_US, platform encoding: Cp1252

OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"

 

C:\rpatrick\work\src\maven\lifecycle-phase\test-project>mvn install

[INFO] Scanning for projects...

[INFO]

[INFO] 

[INFO] Building lifecycle-phase-plugin-test 1.0-SNAPSHOT

[INFO] 

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (validate-phase) @ lifecycle-p

hase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is validate

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (compile-phase) @ lifecycle-ph

ase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is compile

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (process-classes-phase) @ life

cycle-phase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is process-classes

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (package-phase) @ lifecycle-ph

ase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is package

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (pre-integration-test-phase) @

lifecycle-phase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is pre-integration-test

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (post-integration-test-phase)

@ lifecycle-phase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is post-integration-test

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (verify-phase) @ lifecycle-pha

se-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is verify

[INFO]

[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ lifecycle-phas

e-plugin-test ---

[INFO] Installing C:\rpatrick\work\src\maven\lifecycle-phase\test-project\pom.xm

l to C:\Users\rpatrick\.m2\repository\test\lifecycle-phase-plugin-test\1.0-SNAPS

HOT\lifecycle-phase-plugin-test-1.0-SNAPSHOT.pom

[INFO]

[INFO] --- lifecycle-phases-plugin:1.0:phase-name (install-phase) @ lifecycle-ph

ase-plugin-test ---

[INFO] [phase-name] Maven lifecycle phase is install

[INFO] 

[INFO] BUILD SUCCESS

[INFO] 

[INFO] Total time: 0.880s

[INFO] Finished at: Mon Dec 30 16:55:29 CST 2013

[INFO] Final Memory: 14M/490M

[INFO] 

 

 

 

--

Robert Patrick mailto:robert.patr...@oracle.com"robert.patr...@oracle.com>

VP, FMW Platform Architecture

Oracle Corporation    Office: +1.940.725.0011

1148 Triple Crown Court Fax: +1.940.725.0012

Bartonville, TX 76226, USA    Mobile: +1.469.556.9450

 

HYPERLINK 
"http://www.amazon.com/Professional-Oracle-WebLogic-Server-Patrick/dp/0470484306/"Professional
 Oracle WebLogic Server

by Robert Patrick, Gregory Nyberg, and Philip Aston

with Josh Bregman and Paul Done

Book Home Page: HYPERLINK 
"http://www.wrox.com/WileyCDA/WroxTitle/Professional-Oracle-WebLogic-Server.productCd-0470484306.html"http://www.wrox.com/

Kindle Version: HYPERLINK 
"http://www.amazon.com/Professional-Oracle-WebLogic-Server-ebook/dp/B004HD69J2/"http://www.amazon.com/

 

 

From: Martin Gainty [mailto:mgai...@hotmail.com] 
Sent: Monday, December 30, 2013 3:41 PM
To: Maven Developers List; Robert Patrick
Subject: RE: Plugin phase awareness...

 

operational with JDK-1.6 but compiling and running with Oracle Java 
version=1.7.0.25 reproduces the bug

JDK: 1.6
mvn -version=3.0.2
maven-core:3.0
maven-plugin-annotations:3.2
test-project>mvn -e -X -o compile
[INFO] [phase-name]  Maven lifecycle phase is compile (correct)

JDK: 1.6
mvn -version =3.0.5
maven-core:3.0
maven-plugin-annotations:3.2
test-project>mvn -e -X -o compile
[INFO] [phase-name] Maven lifecycle phase is compile (correct)
 
JDK: 1.6
mvn -version=3.1.1
maven-core:3.0
maven-plugin-annotations:3.2
test-project>mvn -e -X -o compile
[INFO] [phase-name] Maven lifecycle phase is compile (correct)
 
--JDK-1.7.0.25--
BASH>mvn -version
Apache Maven 3.0.2 (r1056850; 2011-01-08 19:58:10-0500)
Java version: 1.7.0_25,