Mail on release

2007-06-13 Thread gc134728
Hey maven users,

If i perform a release using the maven release plugin can automate it to send
a mail to a developers list?  and I like to have different mailing lists some
projects need to inform everybode on release and some project just by a select
number of people.

All my projects (artifacts) inherite from one single pom.

Thanks for the help.

Y. Van Steen
---
http://www.scarlet.be/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Mail on release

2007-06-13 Thread Wayne Fay

IMO, this is more along the lines of something you would expect from a
continuous integration server environment ie Continuum, Cruise
Control, etc.

Could you rig something with Antrun plugin or Exec plugin to send an
email as part of the release process? Sure.
Is this standard built-in M2 behavior? Not that I'm aware of.

Wayne

On 6/13/07, gc134728 [EMAIL PROTECTED] wrote:

Hey maven users,

If i perform a release using the maven release plugin can automate it to send
a mail to a developers list?  and I like to have different mailing lists some
projects need to inform everybode on release and some project just by a select
number of people.

All my projects (artifacts) inherite from one single pom.

Thanks for the help.

Y. Van Steen
---
http://www.scarlet.be/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Mail on release

2007-06-13 Thread Alexander Sack

Wow, I was going to feel bad about it...but I was going to suggest using the
antrun plugin to just email what you need, etc.  Not as graceful but will do
the trick and pretty maintainable.

-aps

On 6/13/07, Wayne Fay [EMAIL PROTECTED] wrote:


IMO, this is more along the lines of something you would expect from a
continuous integration server environment ie Continuum, Cruise
Control, etc.

Could you rig something with Antrun plugin or Exec plugin to send an
email as part of the release process? Sure.
Is this standard built-in M2 behavior? Not that I'm aware of.

Wayne

On 6/13/07, gc134728 [EMAIL PROTECTED] wrote:
 Hey maven users,

 If i perform a release using the maven release plugin can automate it to
send
 a mail to a developers list?  and I like to have different mailing lists
some
 projects need to inform everybode on release and some project just by a
select
 number of people.

 All my projects (artifacts) inherite from one single pom.

 Thanks for the help.

 Y. Van Steen
 ---
 http://www.scarlet.be/


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
What lies behind us and what lies in front of us is of little concern to
what lies within us. -Ralph Waldo Emerson


Re: Mail on release

2007-06-13 Thread Steven Rowe
Hey Y.,

gc134728 wrote:
 If i perform a release using the maven release plugin can automate it to send
 a mail to a developers list?  and I like to have different mailing lists some
 projects need to inform everybode on release and some project just by a select
 number of people. 

I use the maven-changes-plugin for this - works great:

build
  ...
  plugins
...
plugin
  artifactIdmaven-release-plugin/artifactId
  configuration
...
goalsdeploy site-deploy changes:announcement-generate
changes:announcement-mail/goals
  /configuration
/plugin
plugin
  artifactIdmaven-changes-plugin/artifactId
  configuration
smtpHostmailserver.example.com/smtpHost
smtpPort implementation=java.lang.Integer25/smtpPort
toAddresses
  toAddress[EMAIL PROTECTED]/toAddress
/toAddresses
  /configuration
/plugin
...
  /plugins
  ...
/build

Steve

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



searching mail archives, release plugin with assembly

2006-11-30 Thread Desmond Lownds
Is there a searchable view of this lists archive? I have a feeling my
question has been asked and answered before.

I am using the assembly plugin to create a binary distribution tarball,
and I am using the release plugin to create a tagged release version, I
cant seem to get both things to happen at once - ie, I want to get a
tagged release built, and a dist tarball containing that version
packaged. Home run would be to be able to add the dist tarball as an
artifact in the repository. 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: searching mail archives, release plugin with assembly

2006-11-30 Thread Wendy Smoak

On 11/30/06, Desmond Lownds [EMAIL PROTECTED] wrote:

Is there a searchable view of this lists archive? I have a feeling my
question has been asked and answered before.


http://maven.apache.org/mail-lists.html links to the Nabble archives
at http://www.nabble.com/Maven---Users-f178.html

--
Wendy

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]