Re: Re : [VOTE] Release Apache Maven 3.0-beta-1

2010-04-26 Thread Raphael Ackermann
Added it to my corporate super pom. No complaints there. But if I try
to run mvn install (mvn2) with the added profile I get an enforcer
error saying that the maven-site-plugin has no version specified.  If
I remove the 3.0-beta-1-SNAPSHOT m-site-p from the maven-3 profile the
build works again.

Is this a bug in the enforcer plugin? when running
help:active-profiles I can see that the maven-3 profile is not active,
but the presence of the 3.0-beta-1-SNAPSHOT plugin seems to confuse
the enforcer plugin


[INFO] [INFO] [enforcer:enforce {execution: enforce}]
[INFO] [INFO] [enforcer:enforce {execution: enforce-plugin-versions}]
[INFO] [WARNING] Rule 0:
org.apache.maven.plugins.enforcer.RequirePluginVersions failed with
message:
[INFO] Some plugins are missing valid versions:(LATEST RELEASE
SNAPSHOT are not allowed )
[INFO] org.apache.maven.plugins:maven-site-plugin.  The version
currently in use is 2.1
[INFO] Best Practice is to always define plugin versions!
[INFO] [INFO] 

[INFO] [ERROR] BUILD ERROR

Raphael


On Fri, Apr 23, 2010 at 12:04, Julien HENRY henr...@yahoo.fr wrote:
 Hi,

 This profile will only works in your projet pom (or better in your corporate 
 super pom). Profiles in settings.xml are not allowed to have a build 
 section.

 Regards,

 Julien



 - Message d'origine 
 De : Raphael Ackermann raphael.ackerm...@gmail.com
 À : Maven Developers List dev@maven.apache.org
 Envoyé le : Ven 23 avril 2010, 11 h 53 min 32 s
 Objet : Re: [VOTE] Release Apache Maven 3.0-beta-1

 I copied the profile from the wiki website and added it to my
 settings.xml
 but get following warnings on maven3 and error with
 maven2:

 maven
 3
 mvn install -DskipTests=true
 [WARNING]
 [WARNING] Some problems were
 encountered while building the effective settings
 [WARNING] Unrecognised tag:
 'build' (position: START_TAG
 seen
 .../activation\r\n\t\t\tbuild... @34:11)  @
 C:\Dokumente und
 Einstellungen\rackermann\.m2\settings.xml, line 34, column
 11
 [WARNING]


 c:\devel\maven\2.2\maven-2.2.1\bin\mvn
 install
 Error reading settings.xml: Unrecognised tag: 'build'
 (position:
 START_TAG seen .../activation\r\n\t\t\tbuild...
 @34:11)
  Line:   34
  Column: 11

 any
 ideas?

 On Fri, Apr 23, 2010 at 00:46, Hervé BOUTEMY 
 ymailto=mailto:herve.bout...@free.fr;
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr wrote:

 this can be done simply by adding a profile activated with ${basedir}
 property:
 I just added instruction at the end of Wiki page
 [1]

 Regards,

 Hervé

 [1]
 href=https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin;
 target=_blank
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin


 Le jeudi 22 avril 2010, Niall Pemberton a écrit :
 On Tue, Apr 20,
 2010 at 8:48 AM, Olivier Lamy 
 href=mailto:ol...@apache.org;ol...@apache.org wrote:
 
 No.
  It's 3.x prerequisite.

 It would be
 good if there was some mechanism so that the site
 generation could
 be made to work with either m2 or m3. Perhaps by
 activating
 different profiles dependant on the maven version -
 something
 like:

   build

 pluginManagement
       plugins

 plugin

 groupIdorg.apache.maven.plugins/groupId

 artifactIdmaven-site-plugin/artifactId

 version${site.plugin.version}/version

 /plugin
       /plugins

 /pluginManagement
   /build


 profiles
     profile

 activation
         maven2/maven

       /activation
       properties

   site.plugin.version2.0.1/site.plugin.version

 /properties
     /profile


 profile
       activation

 maven3/maven
       /activation

     properties

 site.plugin.version3.0-beta-1/site.plugin.version

     /properties
     /profile

 /profiles

  2010/4/20 Brett Porter 
 ymailto=mailto:br...@apache.org;
 href=mailto:br...@apache.org;br...@apache.org:
  On
 20/04/2010, at 5:10 PM, Olivier Lamy wrote:
 
 Hi,
 
  2010/4/20 Hervé BOUTEMY
 
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr:

  what about releasing maven-site-plugin 3.0-beta-1?

 
  Yup I can do that and start releasing all
 needed stuff.
 
  Olivier, is
 there something critical missing?
 

  No except some spare time :-)
 

  Does that also work with Maven 2.x, or will we end up having two
 strands
  of development on it?

 
  - Brett
 
 
 --
  Brett Porter
 
 ymailto=mailto:br...@apache.org;
 href=mailto:br...@apache.org;br...@apache.org
 
 href=http://brettporter.wordpress.com/; target=_blank
 http://brettporter.wordpress.com/
 

 
 
 

 
 
 -

  To unsubscribe, e-mail:
 ymailto=mailto:dev-unsubscr...@maven.apache.org;
 href=mailto:dev-unsubscr...@maven.apache.org;dev-unsubscr...@maven.apache.org

  For additional commands, e-mail:
 ymailto=mailto:dev-h...@maven.apache.org;
 href=mailto:dev-h...@maven.apache.org;dev-h...@maven.apache.org

 
  --
  Olivier
 
 href=http://twitter.com/olamy; target=_blank
 http://twitter.com

Re : Re : [VOTE] Release Apache Maven 3.0-beta-1

2010-04-26 Thread Julien HENRY
It seems the enforcer plugin is set to prevent usage of SNAPSHOT in plugins 
even when plugin is defined in a non active profile. I suppose you could open a 
JIRA issue about that, but according to me the cleaner way is to use a released 
version (or perhaps a locked SNAPSHOT) of m-site-p. If you can't wait for a 
release and lockin plugin doesn't work, I suggest to perform your own release 
in your MRM.

Regards,

Julien



- Message d'origine 
 De : Raphael Ackermann raphael.ackerm...@gmail.com
 À : Maven Developers List dev@maven.apache.org
 Envoyé le : Lun 26 avril 2010, 13 h 05 min 49 s
 Objet : Re: Re : [VOTE] Release Apache Maven 3.0-beta-1
 
 Added it to my corporate super pom. No complaints there. But if I try
to run 
 mvn install (mvn2) with the added profile I get an enforcer
error saying that 
 the maven-site-plugin has no version specified.  If
I remove the 
 3.0-beta-1-SNAPSHOT m-site-p from the maven-3 profile the
build works 
 again.

Is this a bug in the enforcer plugin? when 
 running
help:active-profiles I can see that the maven-3 profile is not 
 active,
but the presence of the 3.0-beta-1-SNAPSHOT plugin seems to 
 confuse
the enforcer plugin


[INFO] [INFO] [enforcer:enforce 
 {execution: enforce}]
[INFO] [INFO] [enforcer:enforce {execution: 
 enforce-plugin-versions}]
[INFO] [WARNING] Rule 
 0:
org.apache.maven.plugins.enforcer.RequirePluginVersions failed 
 with
message:
[INFO] Some plugins are missing valid versions:(LATEST 
 RELEASE
SNAPSHOT are not allowed )
[INFO] 
 org.apache.maven.plugins:maven-site-plugin.  The 
 version
currently in use is 2.1
[INFO] Best Practice is to always define 
 plugin versions!
[INFO] [INFO] 
 
[INFO] 
 [ERROR] BUILD ERROR

Raphael


On Fri, Apr 23, 2010 at 12:04, 
 Julien HENRY 
 href=mailto:henr...@yahoo.fr;henr...@yahoo.fr wrote:
 
 Hi,

 This profile will only works in your projet pom (or better 
 in your corporate super pom). Profiles in settings.xml are not allowed to 
 have a 
 build section.

 Regards,

 
 Julien



 - Message d'origine 
 
 De : Raphael Ackermann 
 href=mailto:raphael.ackerm...@gmail.com;raphael.ackerm...@gmail.com
 
 À : Maven Developers List 
 href=mailto:dev@maven.apache.org;dev@maven.apache.org
 
 Envoyé le : Ven 23 avril 2010, 11 h 53 min 32 s
 Objet : Re: [VOTE] 
 Release Apache Maven 3.0-beta-1

 I copied the profile 
 from the wiki website and added it to my
 settings.xml
 but 
 get following warnings on maven3 and error with
 maven2:

 
 maven
 3
 mvn install -DskipTests=true
 
 [WARNING]
 [WARNING] Some problems were
 encountered while 
 building the effective settings
 [WARNING] Unrecognised tag:
 
 'build' (position: START_TAG
 seen
 
 .../activation\r\n\t\t\tbuild... @34:11)  @
 
 C:\Dokumente und
 Einstellungen\rackermann\.m2\settings.xml, line 34, 
 column
 11
 [WARNING]


 
 c:\devel\maven\2.2\maven-2.2.1\bin\mvn
 install
 Error reading 
 settings.xml: Unrecognised tag: 'build'
 (position:
 START_TAG 
 seen .../activation\r\n\t\t\tbuild...
 
 @34:11)
  Line:   34
  Column: 11

 any
 
 ideas?

 On Fri, Apr 23, 2010 at 00:46, Hervé BOUTEMY 
 
 ymailto=mailto:
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr
 
 href=mailto:
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr
 ymailto=mailto:herve.bout...@free.fr; 
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr 
 wrote:

 this can be done simply by adding a profile 
 activated with ${basedir}
 property:
 I just added 
 instruction at the end of Wiki page
 [1]

 
 Regards,

 Hervé

 [1]
 
 href=
 href=https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin;
  
 target=_blank 
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin;
 
 target=_blank
 
 href=https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin;
  
 target=_blank 
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin


 
 Le jeudi 22 avril 2010, Niall Pemberton a écrit :
 On Tue, Apr 
 20,
 2010 at 8:48 AM, Olivier Lamy 
 href=mailto:
 ymailto=mailto:ol...@apache.org; 
 href=mailto:ol...@apache.org;ol...@apache.org
 ymailto=mailto:ol...@apache.org; 
 href=mailto:ol...@apache.org;ol...@apache.org wrote:
 
 
 No.
  It's 3.x 
 prerequisite.

 It would be
 good if 
 there was some mechanism so that the site
 generation 
 could
 be made to work with either m2 or m3. Perhaps 
 by
 activating
 different profiles dependant on the 
 maven version -
 something
 
 like:

   
 build

 
 pluginManagement
   
 plugins

 
 plugin

 
 groupIdorg.apache.maven.plugins/groupId

 
 artifactIdmaven-site-plugin/artifactId

 
 version${site.plugin.version}/version

 
 /plugin
   
 /plugins

 
 /pluginManagement
   
 /build


 
 profiles
 profile

 
 activation
 
 maven2/maven

   
 /activation
   
 properties

   
 site.plugin.version2.0.1/site.plugin.version

 
 /properties
 
 /profile

Re: Re : Re : [VOTE] Release Apache Maven 3.0-beta-1

2010-04-26 Thread Stephen Connolly
On 26 April 2010 12:41, Julien HENRY henr...@yahoo.fr wrote:

 It seems the enforcer plugin is set to prevent usage of SNAPSHOT in plugins
 even when plugin is defined in a non active profile. I suppose you could
 open a JIRA issue about that, but according to me the cleaner way is to use
 a released version (or perhaps a locked SNAPSHOT)


IIRC the code in m-e-p checks for both types of snapshots... locked and
unlocked


 of m-site-p. If you can't wait for a release and lockin plugin doesn't
 work, I suggest to perform your own release in your MRM.

 Regards,

 Julien



 - Message d'origine 
  De : Raphael Ackermann raphael.ackerm...@gmail.com
  À : Maven Developers List dev@maven.apache.org
  Envoyé le : Lun 26 avril 2010, 13 h 05 min 49 s
  Objet : Re: Re : [VOTE] Release Apache Maven 3.0-beta-1
 
  Added it to my corporate super pom. No complaints there. But if I try
 to run
  mvn install (mvn2) with the added profile I get an enforcer
 error saying that
  the maven-site-plugin has no version specified.  If
 I remove the
  3.0-beta-1-SNAPSHOT m-site-p from the maven-3 profile the
 build works
  again.

 Is this a bug in the enforcer plugin? when
  running
 help:active-profiles I can see that the maven-3 profile is not
  active,
 but the presence of the 3.0-beta-1-SNAPSHOT plugin seems to
  confuse
 the enforcer plugin


 [INFO] [INFO] [enforcer:enforce
  {execution: enforce}]
 [INFO] [INFO] [enforcer:enforce {execution:
  enforce-plugin-versions}]
 [INFO] [WARNING] Rule
  0:
 org.apache.maven.plugins.enforcer.RequirePluginVersions failed
  with
 message:
 [INFO] Some plugins are missing valid versions:(LATEST
  RELEASE
 SNAPSHOT are not allowed )
 [INFO]
  org.apache.maven.plugins:maven-site-plugin.  The
  version
 currently in use is 2.1
 [INFO] Best Practice is to always define
  plugin versions!
 [INFO] [INFO]
  
 [INFO]
  [ERROR] BUILD ERROR

 Raphael


 On Fri, Apr 23, 2010 at 12:04,
  Julien HENRY 
  href=mailto:henr...@yahoo.fr;henr...@yahoo.fr wrote:
 
  Hi,
 
  This profile will only works in your projet pom (or better
  in your corporate super pom). Profiles in settings.xml are not allowed to
 have a
  build section.
 
  Regards,
 
 
  Julien
 
 
 
  - Message d'origine 
 
  De : Raphael Ackermann 
  href=mailto:raphael.ackerm...@gmail.com;raphael.ackerm...@gmail.com
 
  À : Maven Developers List 
  href=mailto:dev@maven.apache.org;dev@maven.apache.org
 
  Envoyé le : Ven 23 avril 2010, 11 h 53 min 32 s
  Objet : Re: [VOTE]
  Release Apache Maven 3.0-beta-1
 
  I copied the profile
  from the wiki website and added it to my
  settings.xml
  but
  get following warnings on maven3 and error with
  maven2:
 
 
  maven
  3
  mvn install -DskipTests=true
 
  [WARNING]
  [WARNING] Some problems were
  encountered while
  building the effective settings
  [WARNING] Unrecognised tag:
 
  'build' (position: START_TAG
  seen
 
  .../activation\r\n\t\t\tbuild... @34:11)  @
 
  C:\Dokumente und
  Einstellungen\rackermann\.m2\settings.xml, line 34,
  column
  11
  [WARNING]
 
 
 
  c:\devel\maven\2.2\maven-2.2.1\bin\mvn
  install
  Error reading
  settings.xml: Unrecognised tag: 'build'
  (position:
  START_TAG
  seen .../activation\r\n\t\t\tbuild...
 
  @34:11)
   Line:   34
   Column: 11
 
  any
 
  ideas?
 
  On Fri, Apr 23, 2010 at 00:46, Hervé BOUTEMY
  
  ymailto=mailto:
  href=mailto:herve.bout...@free.fr;herve.bout...@free.fr
 
  href=mailto:
  href=mailto:herve.bout...@free.fr;herve.bout...@free.fr
  ymailto=mailto:herve.bout...@free.fr;
  href=mailto:herve.bout...@free.fr;herve.bout...@free.fr
  wrote:
 
  this can be done simply by adding a profile
  activated with ${basedir}
  property:
  I just added
  instruction at the end of Wiki page
  [1]
 
 
  Regards,
 
  Hervé
 
  [1]
 
  href=
  href=
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin
 
  target=_blank
  
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin
 
 
  target=_blank
  
  href=
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin
 
  target=_blank
  
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin
 
 
 
  Le jeudi 22 avril 2010, Niall Pemberton a écrit :
  On Tue, Apr
  20,
  2010 at 8:48 AM, Olivier Lamy 
  href=mailto:
  ymailto=mailto:ol...@apache.org;
  href=mailto:ol...@apache.org;ol...@apache.org
  ymailto=mailto:ol...@apache.org;
  href=mailto:ol...@apache.org;ol...@apache.org wrote:
 
  
  No.
   It's 3.x
  prerequisite.
 
  It would be
  good if
  there was some mechanism so that the site
  generation
  could
  be made to work with either m2 or m3. Perhaps
  by
  activating
  different profiles dependant on the
  maven version -
  something
 
  like:
 
 
  build
 
 
  pluginManagement
 
  plugins
 
 
  plugin
 
 
  groupIdorg.apache.maven.plugins/groupId
 
 
  artifactIdmaven-site-plugin/artifactId
 
 
  version

[RESULT] [VOTE] Release Apache Maven 3.0-beta-1

2010-04-23 Thread Benjamin Bentmann

Hi,

The vote has passed with the following result:

+1 (binding): Benjamin Bentmann, Jason van Zyl, Arnaud Héritier, Brian 
Fox, Emmanuel Venisse, Olivier Lamy, John Casey, Lukas Theussl, Hervé 
Boutemy, Brett Porter


+1 (non-binding): Stephen Connolly, Tamás Cservenák, Shane Isbell, 
Kristian Rosenvold, Jochen Wiedmann, Paul Merlin, Igor Fedorenko, 
Nicolas De Loof


I will promote the artifacts to the central repository and continue with 
the release.



Benjamin

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-23 Thread Raphael Ackermann
I copied the profile from the wiki website and added it to my
settings.xml but get following warnings on maven3 and error with
maven2:

maven 3
mvn install -DskipTests=true
[WARNING]
[WARNING] Some problems were encountered while building the effective settings
[WARNING] Unrecognised tag: 'build' (position: START_TAG seen
.../activation\r\n\t\t\tbuild... @34:11)  @ C:\Dokumente und
Einstellungen\rackermann\.m2\settings.xml, line 34, column 11
[WARNING]


c:\devel\maven\2.2\maven-2.2.1\bin\mvn install
Error reading settings.xml: Unrecognised tag: 'build' (position:
START_TAG seen .../activation\r\n\t\t\tbuild... @34:11)
  Line:   34
  Column: 11

any ideas?

On Fri, Apr 23, 2010 at 00:46, Hervé BOUTEMY herve.bout...@free.fr wrote:
 this can be done simply by adding a profile activated with ${basedir} 
 property:
 I just added instruction at the end of Wiki page [1]

 Regards,

 Hervé

 [1] 
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin

 Le jeudi 22 avril 2010, Niall Pemberton a écrit :
 On Tue, Apr 20, 2010 at 8:48 AM, Olivier Lamy ol...@apache.org wrote:
  No.
  It's 3.x prerequisite.

 It would be good if there was some mechanism so that the site
 generation could be made to work with either m2 or m3. Perhaps by
 activating different profiles dependant on the maven version -
 something like:

   build
     pluginManagement
       plugins
         plugin
           groupIdorg.apache.maven.plugins/groupId
           artifactIdmaven-site-plugin/artifactId
           version${site.plugin.version}/version
         /plugin
       /plugins
     /pluginManagement
   /build

   profiles
     profile
       activation
         maven2/maven
       /activation
       properties
         site.plugin.version2.0.1/site.plugin.version
       /properties
     /profile

     profile
       activation
         maven3/maven
       /activation
       properties
         site.plugin.version3.0-beta-1/site.plugin.version
       /properties
     /profile
   /profiles

  2010/4/20 Brett Porter br...@apache.org:
  On 20/04/2010, at 5:10 PM, Olivier Lamy wrote:
  Hi,
 
  2010/4/20 Hervé BOUTEMY herve.bout...@free.fr:
  what about releasing maven-site-plugin 3.0-beta-1?
 
  Yup I can do that and start releasing all needed stuff.
 
  Olivier, is there something critical missing?
 
  No except some spare time :-)
 
  Does that also work with Maven 2.x, or will we end up having two strands
  of development on it?
 
  - Brett
 
  --
  Brett Porter
  br...@apache.org
  http://brettporter.wordpress.com/
 
 
 
 
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 
  --
  Olivier
  http://twitter.com/olamy
  http://fr.linkedin.com/in/olamy
  http://www.viadeo.com/fr/profile/olivier.lamy7
 
  -
  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



Re : [VOTE] Release Apache Maven 3.0-beta-1

2010-04-23 Thread Julien HENRY
Hi,

This profile will only works in your projet pom (or better in your corporate 
super pom). Profiles in settings.xml are not allowed to have a build section.

Regards,

Julien



- Message d'origine 
 De : Raphael Ackermann raphael.ackerm...@gmail.com
 À : Maven Developers List dev@maven.apache.org
 Envoyé le : Ven 23 avril 2010, 11 h 53 min 32 s
 Objet : Re: [VOTE] Release Apache Maven 3.0-beta-1
 
 I copied the profile from the wiki website and added it to my
settings.xml 
 but get following warnings on maven3 and error with
maven2:

maven 
 3
mvn install -DskipTests=true
[WARNING]
[WARNING] Some problems were 
 encountered while building the effective settings
[WARNING] Unrecognised tag: 
 'build' (position: START_TAG 
 seen
.../activation\r\n\t\t\tbuild... @34:11)  @ 
 C:\Dokumente und
Einstellungen\rackermann\.m2\settings.xml, line 34, column 
 11
[WARNING]


c:\devel\maven\2.2\maven-2.2.1\bin\mvn 
 install
Error reading settings.xml: Unrecognised tag: 'build' 
 (position:
START_TAG seen .../activation\r\n\t\t\tbuild... 
 @34:11)
  Line:   34
  Column: 11

any 
 ideas?

On Fri, Apr 23, 2010 at 00:46, Hervé BOUTEMY 
 ymailto=mailto:herve.bout...@free.fr; 
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr wrote:
 
 this can be done simply by adding a profile activated with ${basedir} 
 property:
 I just added instruction at the end of Wiki page 
 [1]

 Regards,

 Hervé

 [1] 
 href=https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin;
  
 target=_blank 
 https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin

 
 Le jeudi 22 avril 2010, Niall Pemberton a écrit :
 On Tue, Apr 20, 
 2010 at 8:48 AM, Olivier Lamy 
 href=mailto:ol...@apache.org;ol...@apache.org wrote:
  
 No.
  It's 3.x prerequisite.

 It would be 
 good if there was some mechanism so that the site
 generation could 
 be made to work with either m2 or m3. Perhaps by
 activating 
 different profiles dependant on the maven version -
 something 
 like:

   build
 
 pluginManagement
   plugins
 
 plugin
   
 groupIdorg.apache.maven.plugins/groupId
   
 artifactIdmaven-site-plugin/artifactId
   
 version${site.plugin.version}/version
 
 /plugin
   /plugins
 
 /pluginManagement
   /build

   
 profiles
 profile
   
 activation
 maven2/maven
 
   /activation
   properties
   
   site.plugin.version2.0.1/site.plugin.version
   
 /properties
 /profile

 
 profile
   activation
 
 maven3/maven
   /activation
   
 properties
 
 site.plugin.version3.0-beta-1/site.plugin.version
   
 /properties
 /profile
   
 /profiles

  2010/4/20 Brett Porter 
 ymailto=mailto:br...@apache.org; 
 href=mailto:br...@apache.org;br...@apache.org:
  On 
 20/04/2010, at 5:10 PM, Olivier Lamy wrote:
  
 Hi,
 
  2010/4/20 Hervé BOUTEMY 
 
 href=mailto:herve.bout...@free.fr;herve.bout...@free.fr:
 
  what about releasing maven-site-plugin 3.0-beta-1?
 
 
  Yup I can do that and start releasing all 
 needed stuff.
 
  Olivier, is 
 there something critical missing?
 
 
  No except some spare time :-)
 
 
  Does that also work with Maven 2.x, or will we end up having two 
 strands
  of development on it?
 
 
  - Brett
 
  
 --
  Brett Porter
  
 ymailto=mailto:br...@apache.org; 
 href=mailto:br...@apache.org;br...@apache.org
  
 href=http://brettporter.wordpress.com/; target=_blank 
 http://brettporter.wordpress.com/
 
 
 
 
 
 
 
  
 -
 
  To unsubscribe, e-mail: 
 ymailto=mailto:dev-unsubscr...@maven.apache.org; 
 href=mailto:dev-unsubscr...@maven.apache.org;dev-unsubscr...@maven.apache.org
 
  For additional commands, e-mail: 
 ymailto=mailto:dev-h...@maven.apache.org; 
 href=mailto:dev-h...@maven.apache.org;dev-h...@maven.apache.org
 
 
  --
  Olivier
  
 href=http://twitter.com/olamy; target=_blank 
 http://twitter.com/olamy
  
 href=http://fr.linkedin.com/in/olamy; target=_blank 
 http://fr.linkedin.com/in/olamy
  
 href=http://www.viadeo.com/fr/profile/olivier.lamy7; target=_blank 
 http://www.viadeo.com/fr/profile/olivier.lamy7
 
 
  
 -
 
  To unsubscribe, e-mail: 
 ymailto=mailto:dev-unsubscr...@maven.apache.org; 
 href=mailto:dev-unsubscr...@maven.apache.org;dev-unsubscr...@maven.apache.org
 
  For additional commands, e-mail: 
 ymailto=mailto:dev-h...@maven.apache.org; 
 href=mailto:dev-h...@maven.apache.org;dev-h...@maven.apache.org

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



 
 -
 To 
 unsubscribe, e-mail: 
 href=mailto:dev-unsubscr

Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-22 Thread nicolas de loof
+1

works fine on my test-projects

2010/4/22 Igor Fedorenko i...@ifedorenko.com

 +1

 Works for Tycho (although I had to fix a couple of sloppy tests) and few
 our internal projects I work on.

 --
 Regards,
 Igor

 Benjamin Bentmann wrote:

 Hi,

 We solved 39 issues:

 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089

 There are still a couple of issues left in JIRA:

 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1

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

 Staged source and binary distros:

 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/

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

 Vote open for 72 hours.

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

 +1 from me


 Benjamin

 -
 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 Apache Maven 3.0-beta-1

2010-04-22 Thread Brett Porter
+1

I downloaded the source tarball, checked the signature, and built from sources. 
Used that to build a few projects.

I still have some niggles (the same as previous alphas), I just need to 
articulate them into JIRA before it goes final...

On 20/04/2010, at 3:50 AM, Benjamin Bentmann wrote:

 Hi,
 
 We solved 39 issues:
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
 There are still a couple of issues left in JIRA:
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-042/
 
 Staged source and binary distros:
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 +1 from me
 
 
 Benjamin
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
 For additional commands, e-mail: dev-h...@maven.apache.org
 

--
Brett Porter
br...@apache.org
http://brettporter.wordpress.com/





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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-22 Thread Hervé BOUTEMY
this can be done simply by adding a profile activated with ${basedir} property: 
I just added instruction at the end of Wiki page [1]

Regards,

Hervé

[1] https://cwiki.apache.org/confluence/display/MAVEN/Maven+3.x+and+site+plugin

Le jeudi 22 avril 2010, Niall Pemberton a écrit :
 On Tue, Apr 20, 2010 at 8:48 AM, Olivier Lamy ol...@apache.org wrote:
  No.
  It's 3.x prerequisite.
 
 It would be good if there was some mechanism so that the site
 generation could be made to work with either m2 or m3. Perhaps by
 activating different profiles dependant on the maven version -
 something like:
 
   build
 pluginManagement
   plugins
 plugin
   groupIdorg.apache.maven.plugins/groupId
   artifactIdmaven-site-plugin/artifactId
   version${site.plugin.version}/version
 /plugin
   /plugins
 /pluginManagement
   /build
 
   profiles
 profile
   activation
 maven2/maven
   /activation
   properties
 site.plugin.version2.0.1/site.plugin.version
   /properties
 /profile
 
 profile
   activation
 maven3/maven
   /activation
   properties
 site.plugin.version3.0-beta-1/site.plugin.version
   /properties
 /profile
   /profiles
 
  2010/4/20 Brett Porter br...@apache.org:
  On 20/04/2010, at 5:10 PM, Olivier Lamy wrote:
  Hi,
 
  2010/4/20 Hervé BOUTEMY herve.bout...@free.fr:
  what about releasing maven-site-plugin 3.0-beta-1?
 
  Yup I can do that and start releasing all needed stuff.
 
  Olivier, is there something critical missing?
 
  No except some spare time :-)
 
  Does that also work with Maven 2.x, or will we end up having two strands
  of development on it?
 
  - Brett
 
  --
  Brett Porter
  br...@apache.org
  http://brettporter.wordpress.com/
 
 
 
 
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 
  --
  Olivier
  http://twitter.com/olamy
  http://fr.linkedin.com/in/olamy
  http://www.viadeo.com/fr/profile/olivier.lamy7
 
  -
  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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-21 Thread Lukas Theussl


+1

-Lukas


Benjamin Bentmann wrote:

Hi,

We solved 39 issues:
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089


There are still a couple of issues left in JIRA:
http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1


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

Staged source and binary distros:
https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/


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

Vote open for 72 hours.

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

+1 from me


Benjamin

-
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 Apache Maven 3.0-beta-1

2010-04-21 Thread Hervé BOUTEMY
+1

Hervé

Le lundi 19 avril 2010, Benjamin Bentmann a écrit :
 Hi,
 
 We solved 39 issues:
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16
 089
 
 There are still a couple of issues left in JIRA:
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500st
 atus=1
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-042/
 
 Staged source and binary distros:
 https://repository.apache.org/content/repositories/maven-042/org/apache/mav
 en/apache-maven/3.0-beta-1/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 +1 from me
 
 
 Benjamin
 
 -
 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 Apache Maven 3.0-beta-1

2010-04-21 Thread Niall Pemberton
On Tue, Apr 20, 2010 at 8:48 AM, Olivier Lamy ol...@apache.org wrote:
 No.
 It's 3.x prerequisite.

It would be good if there was some mechanism so that the site
generation could be made to work with either m2 or m3. Perhaps by
activating different profiles dependant on the maven version -
something like:

  build
pluginManagement
  plugins
plugin
  groupIdorg.apache.maven.plugins/groupId
  artifactIdmaven-site-plugin/artifactId
  version${site.plugin.version}/version
/plugin
  /plugins
/pluginManagement
  /build

  profiles
profile
  activation
maven2/maven
  /activation
  properties
site.plugin.version2.0.1/site.plugin.version
  /properties
/profile

profile
  activation
maven3/maven
  /activation
  properties
site.plugin.version3.0-beta-1/site.plugin.version
  /properties
/profile
  /profiles


 2010/4/20 Brett Porter br...@apache.org:

 On 20/04/2010, at 5:10 PM, Olivier Lamy wrote:

 Hi,

 2010/4/20 Hervé BOUTEMY herve.bout...@free.fr:
 what about releasing maven-site-plugin 3.0-beta-1?

 Yup I can do that and start releasing all needed stuff.

 Olivier, is there something critical missing?

 No except some spare time :-)

 Does that also work with Maven 2.x, or will we end up having two strands of 
 development on it?

 - Brett

 --
 Brett Porter
 br...@apache.org
 http://brettporter.wordpress.com/





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





 --
 Olivier
 http://twitter.com/olamy
 http://fr.linkedin.com/in/olamy
 http://www.viadeo.com/fr/profile/olivier.lamy7

 -
 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 Apache Maven 3.0-beta-1

2010-04-21 Thread Igor Fedorenko

+1

Works for Tycho (although I had to fix a couple of sloppy tests) and few
our internal projects I work on.

--
Regards,
Igor

Benjamin Bentmann wrote:

Hi,

We solved 39 issues:
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089 



There are still a couple of issues left in JIRA:
http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1 



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

Staged source and binary distros:
https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/ 



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

Vote open for 72 hours.

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

+1 from me


Benjamin

-
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 Apache Maven 3.0-beta-1

2010-04-20 Thread Hervé BOUTEMY
what about releasing maven-site-plugin 3.0-beta-1?
Olivier, is there something critical missing?
Last time I tested a SNAPSHOT, we fixed some issues then it seemed quite good 
to me.

Regards,

Hervé

Le mardi 20 avril 2010, Arnaud Héritier a écrit :
 Ok thx.
 I agree that we have a good tests coverage to be quiet to switch.
 Is there something which could be integrated before 3.0 final ? I
 remember I saw a twit from you several weeks ago about replacing the
 dl/ul layer to use a non-jetty stuff.
 
 Arnaud
 
 On Tuesday, April 20, 2010, Jason van Zyl ja...@sonatype.com wrote:
  If Stuart finishes the work it will go in.
 
  I have 100% confidence in the ITs and that we'll find anything before
  users do as a result of switching the container. We have had very few
  problems with flipping Nexus from Plexus to Guice and Stuart was able to
  fix those very quickly. Stuart is likely to have the Guice work done in a
  week or too and then we'll roll another beta but in the meantime people
  will be able to try all the new functionality which I think is more
  important then waiting a week or two to get Guice in. The beta cycle is
  going to be 4-8 weeks so Guice will get exercised. Benjamin and Stuart on
  point to fix anything necessary until the 3.0 so we're fine.
 
  On Apr 19, 2010, at 2:25 PM, Arnaud Héritier wrote:
  +1
  Thus we start only bug fixes releases ?
  Guice won't be included in 3.0 ?
 
  Arnaud Héritier
  Software Factory Manager
  eXo platform - http://www.exoplatform.com
  ---
  http://www.aheritier.net
 
 
  2010/4/19 Tamás Cservenák ta...@cservenak.net
 
  +1
 
  On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
 
  benjamin.bentm...@udo.edu wrote:
  Hi,
 
  We solved 39 issues:
 
  http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500versio
 n=16089
 
  There are still a couple of issues left in JIRA:
 
  http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=1050
 0status=1
 
  Staging repo:
  https://repository.apache.org/content/repositories/maven-042/
 
  Staged source and binary distros:
 
  https://repository.apache.org/content/repositories/maven-042/org/apache
 /maven/apache-maven/3.0-beta-1/
 
  Guide to testing staged releases:
  http://maven.apache.org/guides/development/guide-testing-releases.html
 
  Vote open for 72 hours.
 
  [ ] +1
  [ ] +0
  [ ] -1
 
  +1 from me
 
 
  Benjamin
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 
  Thanks,
 
  Jason
 
  --
  Jason van Zyl
  Founder,  Apache Maven
  http://twitter.com/jvanzyl
  --
 


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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Olivier Lamy
Hi,

2010/4/20 Hervé BOUTEMY herve.bout...@free.fr:
 what about releasing maven-site-plugin 3.0-beta-1?

Yup I can do that and start releasing all needed stuff.

 Olivier, is there something critical missing?

No except some spare time :-)

 Last time I tested a SNAPSHOT, we fixed some issues then it seemed quite good
 to me.

 Regards,

 Hervé

 Le mardi 20 avril 2010, Arnaud Héritier a écrit :
 Ok thx.
 I agree that we have a good tests coverage to be quiet to switch.
 Is there something which could be integrated before 3.0 final ? I
 remember I saw a twit from you several weeks ago about replacing the
 dl/ul layer to use a non-jetty stuff.

 Arnaud

 On Tuesday, April 20, 2010, Jason van Zyl ja...@sonatype.com wrote:
  If Stuart finishes the work it will go in.
 
  I have 100% confidence in the ITs and that we'll find anything before
  users do as a result of switching the container. We have had very few
  problems with flipping Nexus from Plexus to Guice and Stuart was able to
  fix those very quickly. Stuart is likely to have the Guice work done in a
  week or too and then we'll roll another beta but in the meantime people
  will be able to try all the new functionality which I think is more
  important then waiting a week or two to get Guice in. The beta cycle is
  going to be 4-8 weeks so Guice will get exercised. Benjamin and Stuart on
  point to fix anything necessary until the 3.0 so we're fine.
 
  On Apr 19, 2010, at 2:25 PM, Arnaud Héritier wrote:
  +1
  Thus we start only bug fixes releases ?
  Guice won't be included in 3.0 ?
 
  Arnaud Héritier
  Software Factory Manager
  eXo platform - http://www.exoplatform.com
  ---
  http://www.aheritier.net
 
 
  2010/4/19 Tamás Cservenák ta...@cservenak.net
 
  +1
 
  On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
 
  benjamin.bentm...@udo.edu wrote:
  Hi,
 
  We solved 39 issues:
 
  http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500versio
 n=16089
 
  There are still a couple of issues left in JIRA:
 
  http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=1050
 0status=1
 
  Staging repo:
  https://repository.apache.org/content/repositories/maven-042/
 
  Staged source and binary distros:
 
  https://repository.apache.org/content/repositories/maven-042/org/apache
 /maven/apache-maven/3.0-beta-1/
 
  Guide to testing staged releases:
  http://maven.apache.org/guides/development/guide-testing-releases.html
 
  Vote open for 72 hours.
 
  [ ] +1
  [ ] +0
  [ ] -1
 
  +1 from me
 
 
  Benjamin
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 
  Thanks,
 
  Jason
 
  --
  Jason van Zyl
  Founder,  Apache Maven
  http://twitter.com/jvanzyl
  --



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





-- 
Olivier
http://twitter.com/olamy
http://fr.linkedin.com/in/olamy
http://www.viadeo.com/fr/profile/olivier.lamy7

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Jochen Wiedmann
Definitely not a killer, but perhaps something to know: I just tried 3
the release build on one of my projects and got the following error
message:

[ERROR]   The project
com.tsystems.icto.tom:tom-icto-dependencies:0.2.22-SNAPSHOT
(C:\workspace\tom-icto-parent\tom-icto-dependencies\pom.xml) has 1 error
[ERROR]
'build.plugins.plugin[org.apache.maven.plugins:maven-antrun-plugin].dependencies.dependency.scope'
for com.sun.xml.bind:jaxb-xjc:jar must be one of [compile,
runtime, system] but is 'provided'.

The message is right of course, but the scope provided has been
choosen deliberately.

Is this an error on my side, a regression (in which case I'd file a
bug report), or what else?

Thanks,

Jochen

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Stephen Connolly
provided does not make sense for a dependency of a plugin. for a dependency
of a project, yes, but of a plugin, no.  so I would think it is an error on
your side

On 20 April 2010 08:11, Jochen Wiedmann jochen.wiedm...@gmail.com wrote:

 Definitely not a killer, but perhaps something to know: I just tried 3
 the release build on one of my projects and got the following error
 message:

[ERROR]   The project
 com.tsystems.icto.tom:tom-icto-dependencies:0.2.22-SNAPSHOT
(C:\workspace\tom-icto-parent\tom-icto-dependencies\pom.xml) has 1
 error
[ERROR]

 'build.plugins.plugin[org.apache.maven.plugins:maven-antrun-plugin].dependencies.dependency.scope'
for com.sun.xml.bind:jaxb-xjc:jar must be one of [compile,
 runtime, system] but is 'provided'.

 The message is right of course, but the scope provided has been
 choosen deliberately.

 Is this an error on my side, a regression (in which case I'd file a
 bug report), or what else?

 Thanks,

 Jochen

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




Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Jochen Wiedmann
On Tue, Apr 20, 2010 at 9:26 AM, Stephen Connolly
stephen.alan.conno...@gmail.com wrote:

 provided does not make sense for a dependency of a plugin. for a dependency
 of a project, yes, but of a plugin, no.  so I would think it is an error on
 your side

You are right. After changing that the build went on flawlessly.

+1 (Non-binding)


-- 
Germanys national anthem is the most boring in the world - how telling!

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Brett Porter

On 20/04/2010, at 5:10 PM, Olivier Lamy wrote:

 Hi,
 
 2010/4/20 Hervé BOUTEMY herve.bout...@free.fr:
 what about releasing maven-site-plugin 3.0-beta-1?
 
 Yup I can do that and start releasing all needed stuff.
 
 Olivier, is there something critical missing?
 
 No except some spare time :-)

Does that also work with Maven 2.x, or will we end up having two strands of 
development on it?

- Brett

--
Brett Porter
br...@apache.org
http://brettporter.wordpress.com/





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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Olivier Lamy
No.
It's 3.x prerequisite.

2010/4/20 Brett Porter br...@apache.org:

 On 20/04/2010, at 5:10 PM, Olivier Lamy wrote:

 Hi,

 2010/4/20 Hervé BOUTEMY herve.bout...@free.fr:
 what about releasing maven-site-plugin 3.0-beta-1?

 Yup I can do that and start releasing all needed stuff.

 Olivier, is there something critical missing?

 No except some spare time :-)

 Does that also work with Maven 2.x, or will we end up having two strands of 
 development on it?

 - Brett

 --
 Brett Porter
 br...@apache.org
 http://brettporter.wordpress.com/





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





-- 
Olivier
http://twitter.com/olamy
http://fr.linkedin.com/in/olamy
http://www.viadeo.com/fr/profile/olivier.lamy7

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Emmanuel Venisse
+1

Emmanuel

On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
benjamin.bentm...@udo.edu wrote:

 Hi,

 We solved 39 issues:

 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089

 There are still a couple of issues left in JIRA:

 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1

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

 Staged source and binary distros:

 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/

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

 Vote open for 72 hours.

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

 +1 from me


 Benjamin

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




Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread Paul Merlin

+1

Working here.

It's nice to see maven getting closer to the 3.0\o/

/Paul

Le lundi 19 avril 2010 19:50:28, Benjamin Bentmann a écrit :
 Hi,
 
 We solved 39 issues:
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16
 089
 
 There are still a couple of issues left in JIRA:
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500st
 atus=1
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-042/
 
 Staged source and binary distros:
 https://repository.apache.org/content/repositories/maven-042/org/apache/mav
 en/apache-maven/3.0-beta-1/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 +1 from me
 
 
 Benjamin
 
 -
 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 Apache Maven 3.0-beta-1

2010-04-20 Thread Olivier Lamy
+1

2010/4/19 Benjamin Bentmann benjamin.bentm...@udo.edu:
 Hi,

 We solved 39 issues:
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089

 There are still a couple of issues left in JIRA:
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1

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

 Staged source and binary distros:
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/

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

 Vote open for 72 hours.

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

 +1 from me


 Benjamin

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





-- 
Olivier
http://twitter.com/olamy
http://fr.linkedin.com/in/olamy
http://www.viadeo.com/fr/profile/olivier.lamy7

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-20 Thread John Casey

+1 works well here.

On 4/19/10 1:50 PM, Benjamin Bentmann wrote:

Hi,

We solved 39 issues:
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089


There are still a couple of issues left in JIRA:
http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1


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

Staged source and binary distros:
https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/


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

Vote open for 72 hours.

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

+1 from me


Benjamin

-
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



[VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Benjamin Bentmann

Hi,

We solved 39 issues:
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089

There are still a couple of issues left in JIRA:
http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1

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

Staged source and binary distros:
https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/

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

Vote open for 72 hours.

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

+1 from me


Benjamin

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Jason van Zyl
+1

Wee!

On Apr 19, 2010, at 10:50 AM, Benjamin Bentmann wrote:

 Hi,
 
 We solved 39 issues:
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
 There are still a couple of issues left in JIRA:
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-042/
 
 Staged source and binary distros:
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 +1 from me
 
 
 Benjamin
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
 For additional commands, e-mail: dev-h...@maven.apache.org
 

Thanks,

Jason

--
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
--



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Stephen Connolly
+1

On 19 April 2010 19:12, Jason van Zyl ja...@sonatype.com wrote:

 +1

 Wee!

 On Apr 19, 2010, at 10:50 AM, Benjamin Bentmann wrote:

  Hi,
 
  We solved 39 issues:
 
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
  There are still a couple of issues left in JIRA:
 
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
  Staging repo:
  https://repository.apache.org/content/repositories/maven-042/
 
  Staged source and binary distros:
 
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
  Guide to testing staged releases:
  http://maven.apache.org/guides/development/guide-testing-releases.html
 
  Vote open for 72 hours.
 
  [ ] +1
  [ ] +0
  [ ] -1
 
  +1 from me
 
 
  Benjamin
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 

 Thanks,

 Jason

 --
 Jason van Zyl
 Founder,  Apache Maven
 http://twitter.com/jvanzyl
 --




Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Jochen Wiedmann
Just a question, without voicing an opinion: I notice the beta. What
is the meaning? Are there any plans of a schedule towards a 3.0 final?

Thanks,

Jochen


-- 
Germanys national anthem is the most boring in the world - how telling!

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Tamás Cservenák
+1

On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
benjamin.bentm...@udo.edu wrote:

 Hi,

 We solved 39 issues:

 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089

 There are still a couple of issues left in JIRA:

 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1

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

 Staged source and binary distros:

 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/

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

 Vote open for 72 hours.

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

 +1 from me


 Benjamin

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




Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Shane Isbell
+1

Glad to see a movement to beta

Shane


Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Kristian Rosenvold
+1


ma., 19.04.2010 kl. 19.50 +0200, skrev Benjamin Bentmann:
 Hi,
 
 We solved 39 issues:
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
 There are still a couple of issues left in JIRA:
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-042/
 
 Staged source and binary distros:
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 +1 from me
 
 
 Benjamin
 
 -
 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 Apache Maven 3.0-beta-1

2010-04-19 Thread Arnaud Héritier
+1
Thus we start only bug fixes releases ?
Guice won't be included in 3.0 ?

Arnaud Héritier
Software Factory Manager
eXo platform - http://www.exoplatform.com
---
http://www.aheritier.net


2010/4/19 Tamás Cservenák ta...@cservenak.net

 +1

 On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
 benjamin.bentm...@udo.edu wrote:

  Hi,
 
  We solved 39 issues:
 
 
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
  There are still a couple of issues left in JIRA:
 
 
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
  Staging repo:
  https://repository.apache.org/content/repositories/maven-042/
 
  Staged source and binary distros:
 
 
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
  Guide to testing staged releases:
  http://maven.apache.org/guides/development/guide-testing-releases.html
 
  Vote open for 72 hours.
 
  [ ] +1
  [ ] +0
  [ ] -1
 
  +1 from me
 
 
  Benjamin
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 
 



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Jason van Zyl

On Apr 19, 2010, at 12:19 PM, Jochen Wiedmann wrote:

 Just a question, without voicing an opinion: I notice the beta. What
 is the meaning? Are there any plans of a schedule towards a 3.0 final?
 

When there's a long enough period where users don't report any serious issues 
it will be 3.0. No idea how long that will take, but my guestimate is 4-8 weeks.

 Thanks,
 
 Jochen
 
 
 -- 
 Germanys national anthem is the most boring in the world - how telling!
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
 For additional commands, e-mail: dev-h...@maven.apache.org
 

Thanks,

Jason

--
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
--



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Jason van Zyl
If Stuart finishes the work it will go in. 

I have 100% confidence in the ITs and that we'll find anything before users do 
as a result of switching the container. We have had very few problems with 
flipping Nexus from Plexus to Guice and Stuart was able to fix those very 
quickly. Stuart is likely to have the Guice work done in a week or too and then 
we'll roll another beta but in the meantime people will be able to try all the 
new functionality which I think is more important then waiting a week or two to 
get Guice in. The beta cycle is going to be 4-8 weeks so Guice will get 
exercised. Benjamin and Stuart on point to fix anything necessary until the 3.0 
so we're fine.

On Apr 19, 2010, at 2:25 PM, Arnaud Héritier wrote:

 +1
 Thus we start only bug fixes releases ?
 Guice won't be included in 3.0 ?
 
 Arnaud Héritier
 Software Factory Manager
 eXo platform - http://www.exoplatform.com
 ---
 http://www.aheritier.net
 
 
 2010/4/19 Tamás Cservenák ta...@cservenak.net
 
 +1
 
 On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
 benjamin.bentm...@udo.edu wrote:
 
 Hi,
 
 We solved 39 issues:
 
 
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
 There are still a couple of issues left in JIRA:
 
 
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
 Staging repo:
 https://repository.apache.org/content/repositories/maven-042/
 
 Staged source and binary distros:
 
 
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
 Guide to testing staged releases:
 http://maven.apache.org/guides/development/guide-testing-releases.html
 
 Vote open for 72 hours.
 
 [ ] +1
 [ ] +0
 [ ] -1
 
 +1 from me
 
 
 Benjamin
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
 For additional commands, e-mail: dev-h...@maven.apache.org
 
 
 

Thanks,

Jason

--
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
--



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Jochen Wiedmann
On Tue, Apr 20, 2010 at 12:11 AM, Jason van Zyl ja...@sonatype.com wrote:

 On Apr 19, 2010, at 12:19 PM, Jochen Wiedmann wrote:

 Just a question, without voicing an opinion: I notice the beta. What
 is the meaning? Are there any plans of a schedule towards a 3.0 final?


 When there's a long enough period where users don't report any serious issues 
 it will be 3.0. No idea how long that will take, but my guestimate is 4-8 
 weeks.

That would be really quick!

Jochen


-- 
Germanys national anthem is the most boring in the world - how telling!

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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Jason van Zyl
On Apr 19, 2010, at 3:41 PM, Jochen Wiedmann wrote:

 On Tue, Apr 20, 2010 at 12:11 AM, Jason van Zyl ja...@sonatype.com wrote:
 
 On Apr 19, 2010, at 12:19 PM, Jochen Wiedmann wrote:
 
 Just a question, without voicing an opinion: I notice the beta. What
 is the meaning? Are there any plans of a schedule towards a 3.0 final?
 
 
 When there's a long enough period where users don't report any serious 
 issues it will be 3.0. No idea how long that will take, but my guestimate is 
 4-8 weeks.
 
 That would be really quick!
 

We have a seriously powerful set of ITs. We tried to do the work upfront to 
circumvent the community doing the QA. Well, Benjamin did all the work :-) We 
have great ITs.

We might find some niggles, but I don't think we're going to find anything 
serious and problems will be few and far between at this point.

 Jochen
 
 
 -- 
 Germanys national anthem is the most boring in the world - how telling!
 
 -
 To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
 For additional commands, e-mail: dev-h...@maven.apache.org
 

Thanks,

Jason

--
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
--



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Brett Porter

On 20/04/2010, at 8:48 AM, Jason van Zyl wrote:

 On Apr 19, 2010, at 3:41 PM, Jochen Wiedmann wrote:
 
 On Tue, Apr 20, 2010 at 12:11 AM, Jason van Zyl ja...@sonatype.com wrote:
 
 On Apr 19, 2010, at 12:19 PM, Jochen Wiedmann wrote:
 
 Just a question, without voicing an opinion: I notice the beta. What
 is the meaning? Are there any plans of a schedule towards a 3.0 final?
 
 
 When there's a long enough period where users don't report any serious 
 issues it will be 3.0. No idea how long that will take, but my guestimate 
 is 4-8 weeks.
 
 That would be really quick!
 
 
 We have a seriously powerful set of ITs. We tried to do the work upfront to 
 circumvent the community doing the QA. Well, Benjamin did all the work :-) We 
 have great ITs.
 
 We might find some niggles, but I don't think we're going to find anything 
 serious and problems will be few and far between at this point.

We should also finish the work started in January to clean up the JIRA issues 
list. It really won't take that long and it'll make it much easier to be 
responsive to new issues going forward.

- Brett

--
Brett Porter
br...@apache.org
http://brettporter.wordpress.com/





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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Brian Fox
+1 works ok here.

On Mon, Apr 19, 2010 at 2:34 PM, Stephen Connolly
stephen.alan.conno...@gmail.com wrote:
 +1

 On 19 April 2010 19:12, Jason van Zyl ja...@sonatype.com wrote:

 +1

 Wee!

 On Apr 19, 2010, at 10:50 AM, Benjamin Bentmann wrote:

  Hi,
 
  We solved 39 issues:
 
 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089
 
  There are still a couple of issues left in JIRA:
 
 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1
 
  Staging repo:
  https://repository.apache.org/content/repositories/maven-042/
 
  Staged source and binary distros:
 
 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/
 
  Guide to testing staged releases:
  http://maven.apache.org/guides/development/guide-testing-releases.html
 
  Vote open for 72 hours.
 
  [ ] +1
  [ ] +0
  [ ] -1
 
  +1 from me
 
 
  Benjamin
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
  For additional commands, e-mail: dev-h...@maven.apache.org
 

 Thanks,

 Jason

 --
 Jason van Zyl
 Founder,  Apache Maven
 http://twitter.com/jvanzyl
 --




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



Re: [VOTE] Release Apache Maven 3.0-beta-1

2010-04-19 Thread Arnaud Héritier
Ok thx.
I agree that we have a good tests coverage to be quiet to switch.
Is there something which could be integrated before 3.0 final ? I
remember I saw a twit from you several weeks ago about replacing the
dl/ul layer to use a non-jetty stuff.

Arnaud

On Tuesday, April 20, 2010, Jason van Zyl ja...@sonatype.com wrote:
 If Stuart finishes the work it will go in.

 I have 100% confidence in the ITs and that we'll find anything before users 
 do as a result of switching the container. We have had very few problems with 
 flipping Nexus from Plexus to Guice and Stuart was able to fix those very 
 quickly. Stuart is likely to have the Guice work done in a week or too and 
 then we'll roll another beta but in the meantime people will be able to try 
 all the new functionality which I think is more important then waiting a week 
 or two to get Guice in. The beta cycle is going to be 4-8 weeks so Guice will 
 get exercised. Benjamin and Stuart on point to fix anything necessary until 
 the 3.0 so we're fine.

 On Apr 19, 2010, at 2:25 PM, Arnaud Héritier wrote:

 +1
 Thus we start only bug fixes releases ?
 Guice won't be included in 3.0 ?

 Arnaud Héritier
 Software Factory Manager
 eXo platform - http://www.exoplatform.com
 ---
 http://www.aheritier.net


 2010/4/19 Tamás Cservenák ta...@cservenak.net

 +1

 On Mon, Apr 19, 2010 at 7:50 PM, Benjamin Bentmann 
 benjamin.bentm...@udo.edu wrote:

 Hi,

 We solved 39 issues:


 http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=10500version=16089

 There are still a couple of issues left in JIRA:


 http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=truepid=10500status=1

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

 Staged source and binary distros:


 https://repository.apache.org/content/repositories/maven-042/org/apache/maven/apache-maven/3.0-beta-1/

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

 Vote open for 72 hours.

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

 +1 from me


 Benjamin

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




 Thanks,

 Jason

 --
 Jason van Zyl
 Founder,  Apache Maven
 http://twitter.com/jvanzyl
 --



-- 
Arnaud Héritier
Software Factory Manager
eXo platform - http://www.exoplatform.com
---
http://www.aheritier.net

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