Re: [VOTE] Promote maven-app-engine (mae) from sandbox and release 1.0-alpha-1

2011-10-29 Thread Lukas Theussl
+1

-Lukas


On Wed, Oct 26, 2011 at 11:36 PM, John Casey jdca...@commonjava.org wrote:

 Hi everyone,

 MAE is a new project that I've been working on for about a year and a half.
 It's goal is to wrap the Maven APIs and make them easier to embed inside
 other applications. This enables applications to orchestrate Maven builds,
 but it also enables the easy reuse of Maven components outside of Maven
 proper.

 Though I've been working on this project for awhile now, I don't have any
 really great examples built into the codebase just yet; I need to distill a
 few that illustrate the two broad use cases from the applications I've been
 building around MAE.

 This is just the 1.0-alpha-1 release. It doesn't have an issue tracker or
 proper website yet, but the code is relatively stable as-is (I've left this
 vote for awhile to make sure of that). My hope was to promote the project
 out of the sandbox and get a first alpha released, then start beefing up
 examples and documentation that will go on a website.

 The staging repository is here:

 https://repository.apache.org/**content/repositories/maven-**103/https://repository.apache.org/content/repositories/maven-103/


 FWIW, the guide to testing staged releases is here:

 http://maven.apache.org/**guides/development/guide-**testing-releases.htmlhttp://maven.apache.org/guides/development/guide-testing-releases.html


 This vote is open for 72h:

 (practically speaking, it'll be Monday before I can circle back to it)

 [ ] +1
 [ ] +0
 [ ] -1


 --
 John Casey
 Developer, PMC Chair - Apache Maven (http://maven.apache.org)
 Blog: http://www.johnofalltrades.**name/http://www.johnofalltrades.name/

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




Re: [VOTE] Promote maven-app-engine (mae) from sandbox and release 1.0-alpha-1

2011-10-29 Thread Olivier Lamy
+1

2011/10/26 John Casey jdca...@commonjava.org:
 Hi everyone,

 MAE is a new project that I've been working on for about a year and a half.
 It's goal is to wrap the Maven APIs and make them easier to embed inside
 other applications. This enables applications to orchestrate Maven builds,
 but it also enables the easy reuse of Maven components outside of Maven
 proper.

 Though I've been working on this project for awhile now, I don't have any
 really great examples built into the codebase just yet; I need to distill a
 few that illustrate the two broad use cases from the applications I've been
 building around MAE.

 This is just the 1.0-alpha-1 release. It doesn't have an issue tracker or
 proper website yet, but the code is relatively stable as-is (I've left this
 vote for awhile to make sure of that). My hope was to promote the project
 out of the sandbox and get a first alpha released, then start beefing up
 examples and documentation that will go on a website.

 The staging repository is here:

 https://repository.apache.org/content/repositories/maven-103/


 FWIW, the guide to testing staged releases is here:

 http://maven.apache.org/guides/development/guide-testing-releases.html


 This vote is open for 72h:

 (practically speaking, it'll be Monday before I can circle back to it)

 [ ] +1
 [ ] +0
 [ ] -1


 --
 John Casey
 Developer, PMC Chair - Apache Maven (http://maven.apache.org)
 Blog: http://www.johnofalltrades.name/

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





-- 
Olivier Lamy
Talend : http://talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy

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



Re: svn commit: r1190737 - /maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java

2011-10-29 Thread Olivier Lamy
Yup, sorry for the issue.

I have fixed that locally but not yet committed as I worked on an other issue.

2011/10/29  hbout...@apache.org:
 Author: hboutemy
 Date: Sat Oct 29 02:22:46 2011
 New Revision: 1190737

 URL: http://svn.apache.org/viewvc?rev=1190737view=rev
 Log:
 [ARCHETYPE-387] used testProjectsDirectory parameter introduced in r1190546 
 and fixed its default value

 Modified:
    
 maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java

 Modified: 
 maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java
 URL: 
 http://svn.apache.org/viewvc/maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java?rev=1190737r1=1190736r2=1190737view=diff
 ==
 --- 
 maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java
  (original)
 +++ 
 maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java
  Sat Oct 29 02:22:46 2011
 @@ -101,7 +101,7 @@ public class IntegrationTestMojo
     /**
      * Directory of test projects
      *
 -     * @parameter expression=${archetype.test.projectsDirectory} 
 default-value=${project.build.testOutputDirectory}
 +     * @parameter expression=${archetype.test.projectsDirectory} 
 default-value=${project.build.testOutputDirectory}/projects
      * @required
      * @since 2.2
      */
 @@ -115,9 +115,7 @@ public class IntegrationTestMojo
             return;
         }

 -        File projectsDirectory = new File( project.getBasedir(), 
 target/test-classes/projects );
 -
 -        if ( !projectsDirectory.exists() )
 +        if ( !testProjectsDirectory.exists() )
         {
             getLog().warn( No Archetype IT projects: root 'projects' 
 directory not found. );

 @@ -136,7 +134,7 @@ public class IntegrationTestMojo
         try
         {
             @SuppressWarnings( unchecked ) ListFile projectsGoalFiles =
 -                FileUtils.getFiles( projectsDirectory, */goal.txt,  );
 +                FileUtils.getFiles( testProjectsDirectory, */goal.txt,  
 );

             if ( projectsGoalFiles.size() == 0 )
             {






-- 
Olivier Lamy
Talend : http://talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy

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



Re: shade release

2011-10-29 Thread Robert Burrell Donkin
On Fri, Oct 28, 2011 at 10:55 PM, Stephen Connolly
stephen.alan.conno...@gmail.com wrote:
 go for it

+1

Robert

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



Re: [VOTE] release maven-shade-plugin 1.5

2011-10-29 Thread Mark Struberg
+1

LieGrue,
strub



- Original Message -
 From: Benson Margulies bimargul...@gmail.com
 To: Maven Developers List dev@maven.apache.org
 Cc: 
 Sent: Saturday, October 29, 2011 1:58 AM
 Subject: [VOTE] release maven-shade-plugin 1.5
 
 Hi,
 
 We solved 8 issues:
 
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11540version=16695
 
 There are still a couple of issues left in JIRA:
 
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truemode=hidejqlQuery=project+%3D+MSHADE+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-119/
 
 Staging site:
 http://maven.apache.org/plugins/maven-shade-plugin-1.5/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 -
 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: [VOTE] Promote maven-app-engine (mae) from sandbox and release 1.0-alpha-1

2011-10-29 Thread Mark Struberg
+1

LieGrue,
strub



- Original Message -
 From: John Casey jdca...@commonjava.org
 To: Maven Developers List dev@maven.apache.org
 Cc: 
 Sent: Wednesday, October 26, 2011 11:36 PM
 Subject: [VOTE] Promote maven-app-engine (mae) from sandbox and release 
 1.0-alpha-1
 
 Hi everyone,
 
 MAE is a new project that I've been working on for about a year and a half. 
 It's goal is to wrap the Maven APIs and make them easier to embed inside 
 other applications. This enables applications to orchestrate Maven builds, 
 but 
 it also enables the easy reuse of Maven components outside of Maven proper.
 
 Though I've been working on this project for awhile now, I don't have 
 any really great examples built into the codebase just yet; I need to distill 
 a 
 few that illustrate the two broad use cases from the applications I've been 
 building around MAE.
 
 This is just the 1.0-alpha-1 release. It doesn't have an issue tracker or 
 proper website yet, but the code is relatively stable as-is (I've left this 
 vote for awhile to make sure of that). My hope was to promote the project out 
 of 
 the sandbox and get a first alpha released, then start beefing up examples 
 and 
 documentation that will go on a website.
 
 The staging repository is here:
 
 https://repository.apache.org/content/repositories/maven-103/
 
 
 FWIW, the guide to testing staged releases is here:
 
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 
 This vote is open for 72h:
 
 (practically speaking, it'll be Monday before I can circle back to it)
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 
 -- John Casey
 Developer, PMC Chair - Apache Maven (http://maven.apache.org)
 Blog: http://www.johnofalltrades.name/
 
 -
 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: [VOTE] Promote maven-app-engine (mae) from sandbox and release 1.0-alpha-1

2011-10-29 Thread Kristian Rosenvold
+1

Den 29. okt. 2011 kl. 09:32 skrev Olivier Lamy ol...@apache.org:

 +1

 2011/10/26 John Casey jdca...@commonjava.org:
 Hi everyone,

 MAE is a new project that I've been working on for about a year and a half.
 It's goal is to wrap the Maven APIs and make them easier to embed inside
 other applications. This enables applications to orchestrate Maven builds,
 but it also enables the easy reuse of Maven components outside of Maven
 proper.

 Though I've been working on this project for awhile now, I don't have any
 really great examples built into the codebase just yet; I need to distill a
 few that illustrate the two broad use cases from the applications I've been
 building around MAE.

 This is just the 1.0-alpha-1 release. It doesn't have an issue tracker or
 proper website yet, but the code is relatively stable as-is (I've left this
 vote for awhile to make sure of that). My hope was to promote the project
 out of the sandbox and get a first alpha released, then start beefing up
 examples and documentation that will go on a website.

 The staging repository is here:

 https://repository.apache.org/content/repositories/maven-103/


 FWIW, the guide to testing staged releases is here:

 http://maven.apache.org/guides/development/guide-testing-releases.html


 This vote is open for 72h:

 (practically speaking, it'll be Monday before I can circle back to it)

 [ ] +1
 [ ] +0
 [ ] -1


 --
 John Casey
 Developer, PMC Chair - Apache Maven (http://maven.apache.org)
 Blog: http://www.johnofalltrades.name/

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





 --
 Olivier Lamy
 Talend : http://talend.com
 http://twitter.com/olamy | http://linkedin.com/in/olamy

 -
 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: [VOTE] Promote maven-app-engine (mae) from sandbox and release 1.0-alpha-1

2011-10-29 Thread Hervé BOUTEMY
+1

Hervé

Le Mercredi 26 Octobre 2011 17:36:48 John Casey a écrit :
 Hi everyone,
 
 MAE is a new project that I've been working on for about a year and a
 half. It's goal is to wrap the Maven APIs and make them easier to embed
 inside other applications. This enables applications to orchestrate
 Maven builds, but it also enables the easy reuse of Maven components
 outside of Maven proper.
 
 Though I've been working on this project for awhile now, I don't have
 any really great examples built into the codebase just yet; I need to
 distill a few that illustrate the two broad use cases from the
 applications I've been building around MAE.
 
 This is just the 1.0-alpha-1 release. It doesn't have an issue tracker
 or proper website yet, but the code is relatively stable as-is (I've
 left this vote for awhile to make sure of that). My hope was to promote
 the project out of the sandbox and get a first alpha released, then
 start beefing up examples and documentation that will go on a website.
 
 The staging repository is here:
 
 https://repository.apache.org/content/repositories/maven-103/
 
 
 FWIW, the guide to testing staged releases is here:
 
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 
 This vote is open for 72h:
 
 (practically speaking, it'll be Monday before I can circle back to it)
 
 [ ] +1
 [ ] +0
 [ ] -1

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



Re: svn commit: r1190737 - /maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.java

2011-10-29 Thread Hervé BOUTEMY
np: I liked the idea (and was sorry to not have done it before...)

:)

Le Samedi 29 Octobre 2011 09:34:08 Olivier Lamy a écrit :
 Yup, sorry for the issue.
 
 I have fixed that locally but not yet committed as I worked on an other
 issue.
 2011/10/29  hbout...@apache.org:
  Author: hboutemy
  Date: Sat Oct 29 02:22:46 2011
  New Revision: 1190737
  
  URL: http://svn.apache.org/viewvc?rev=1190737view=rev
  Log:
  [ARCHETYPE-387] used testProjectsDirectory parameter introduced in
  r1190546 and fixed its default value
  
  Modified:
   
   maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/
  maven/archetype/mojos/IntegrationTestMojo.java
  
  Modified:
  maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/m
  aven/archetype/mojos/IntegrationTestMojo.java URL:
  http://svn.apache.org/viewvc/maven/archetype/trunk/maven-archetype-plug
  in/src/main/java/org/apache/maven/archetype/mojos/IntegrationTestMojo.ja
  va?rev=1190737r1=1190736r2=1190737view=diff
  ===
  === ---
  maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/m
  aven/archetype/mojos/IntegrationTestMojo.java (original) +++
  maven/archetype/trunk/maven-archetype-plugin/src/main/java/org/apache/m
  aven/archetype/mojos/IntegrationTestMojo.java Sat Oct 29 02:22:46 2011
  @@ -101,7 +101,7 @@ public class IntegrationTestMojo
  /**
   * Directory of test projects
   *
  - * @parameter expression=${archetype.test.projectsDirectory}
  default-value=${project.build.testOutputDirectory} + * @parameter
  expression=${archetype.test.projectsDirectory}
  default-value=${project.build.testOutputDirectory}/projects *
  @required
   * @since 2.2
   */
  @@ -115,9 +115,7 @@ public class IntegrationTestMojo
  return;
  }
  
  -File projectsDirectory = new File( project.getBasedir(),
  target/test-classes/projects ); -
  -if ( !projectsDirectory.exists() )
  +if ( !testProjectsDirectory.exists() )
  {
  getLog().warn( No Archetype IT projects: root 'projects'
  directory not found. );
  
  @@ -136,7 +134,7 @@ public class IntegrationTestMojo
  try
  {
  @SuppressWarnings( unchecked ) ListFile
  projectsGoalFiles = -FileUtils.getFiles(
  projectsDirectory, */goal.txt,  ); +  
   FileUtils.getFiles( testProjectsDirectory, */goal.txt,  );
  
  if ( projectsGoalFiles.size() == 0 )
  {

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



Re: [VOTE] Promote maven-app-engine (mae) from sandbox and release 1.0-alpha-1

2011-10-29 Thread Stephen Connolly
+1

- Stephen

---
Sent from my Android phone, so random spelling mistakes, random nonsense
words and other nonsense are a direct result of using swype to type on the
screen
On 26 Oct 2011 22:37, John Casey jdca...@commonjava.org wrote:

 Hi everyone,

 MAE is a new project that I've been working on for about a year and a half.
 It's goal is to wrap the Maven APIs and make them easier to embed inside
 other applications. This enables applications to orchestrate Maven builds,
 but it also enables the easy reuse of Maven components outside of Maven
 proper.

 Though I've been working on this project for awhile now, I don't have any
 really great examples built into the codebase just yet; I need to distill a
 few that illustrate the two broad use cases from the applications I've been
 building around MAE.

 This is just the 1.0-alpha-1 release. It doesn't have an issue tracker or
 proper website yet, but the code is relatively stable as-is (I've left this
 vote for awhile to make sure of that). My hope was to promote the project
 out of the sandbox and get a first alpha released, then start beefing up
 examples and documentation that will go on a website.

 The staging repository is here:

 https://repository.apache.org/**content/repositories/maven-**103/https://repository.apache.org/content/repositories/maven-103/


 FWIW, the guide to testing staged releases is here:

 http://maven.apache.org/**guides/development/guide-**testing-releases.htmlhttp://maven.apache.org/guides/development/guide-testing-releases.html


 This vote is open for 72h:

 (practically speaking, it'll be Monday before I can circle back to it)

 [ ] +1
 [ ] +0
 [ ] -1


 --
 John Casey
 Developer, PMC Chair - Apache Maven (http://maven.apache.org)
 Blog: http://www.johnofalltrades.**name/http://www.johnofalltrades.name/

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




Re: [VOTE] release maven-shade-plugin 1.5

2011-10-29 Thread Kristian Rosenvold
+1

Den 29. okt. 2011 kl. 01:58 skrev Benson Margulies bimargul...@gmail.com:

 Hi,

 We solved 8 issues:

 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11540version=16695

 There are still a couple of issues left in JIRA:

 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truemode=hidejqlQuery=project+%3D+MSHADE+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC

 Staging repo:
 https://repository.apache.org/content/repositories/maven-119/

 Staging site:
 http://maven.apache.org/plugins/maven-shade-plugin-1.5/

 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html

 Vote open for 72 hours.

 [ ] +1
 [ ] +0
 [ ] -1

 -
 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: [VOTE] release maven-shade-plugin 1.5

2011-10-29 Thread Olivier Lamy
+1  (site is here ?
http://maven.apache.org/plugins/maven-shade-plugin-1.5/plugins/maven-shade-plugin/
)

2011/10/29 Kristian Rosenvold kristian.rosenv...@gmail.com:
 +1

 Den 29. okt. 2011 kl. 01:58 skrev Benson Margulies bimargul...@gmail.com:

 Hi,

 We solved 8 issues:

 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11540version=16695

 There are still a couple of issues left in JIRA:

 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truemode=hidejqlQuery=project+%3D+MSHADE+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC

 Staging repo:
 https://repository.apache.org/content/repositories/maven-119/

 Staging site:
 http://maven.apache.org/plugins/maven-shade-plugin-1.5/

 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html

 Vote open for 72 hours.

 [ ] +1
 [ ] +0
 [ ] -1

 -
 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





-- 
Olivier Lamy
Talend : http://talend.com
http://twitter.com/olamy | http://linkedin.com/in/olamy

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



Re: [VOTE] release maven-shade-plugin 1.5

2011-10-29 Thread Benson Margulies
On Sat, Oct 29, 2011 at 4:15 PM, Olivier Lamy ol...@apache.org wrote:
 +1  (site is here ?
 http://maven.apache.org/plugins/maven-shade-plugin-1.5/plugins/maven-shade-plugin/
 )

Oh, oops. I assumed that it used the parent to deliver to the usual
place. I'll fix that post-release.



 2011/10/29 Kristian Rosenvold kristian.rosenv...@gmail.com:
 +1

 Den 29. okt. 2011 kl. 01:58 skrev Benson Margulies bimargul...@gmail.com:

 Hi,

 We solved 8 issues:

 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11540version=16695

 There are still a couple of issues left in JIRA:

 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truemode=hidejqlQuery=project+%3D+MSHADE+AND+resolution+%3D+Unresolved+ORDER+BY+updated+DESC

 Staging repo:
 https://repository.apache.org/content/repositories/maven-119/

 Staging site:
 http://maven.apache.org/plugins/maven-shade-plugin-1.5/

 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html

 Vote open for 72 hours.

 [ ] +1
 [ ] +0
 [ ] -1

 -
 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





 --
 Olivier Lamy
 Talend : http://talend.com
 http://twitter.com/olamy | http://linkedin.com/in/olamy

 -
 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