Trouble attaching artifacts for release:perform.

2009-02-18 Thread David C. Hicks
Hi folks, I'm attempting to attach an assembly to a sub-module's artifacts, but it fails to work when I do a release:perform. I have the Assembly plugin bound to the package phase, but it lives in a pom type submodule. The assembly plugin is activated through a profile that exists in the

Attaching artifacts

2008-12-04 Thread Sommers, Elizabeth
Is there anyway to attach an artifact without writing a mojo to do it? I would like to just do it with the pom if possible. Liz Sommers [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Attaching artifacts

2008-12-04 Thread Martin Gainty
contained within this transmission. Subject: Attaching artifacts Date: Thu, 4 Dec 2008 11:25:31 -0500 From: [EMAIL PROTECTED] To: users@maven.apache.org Is there anyway to attach an artifact without writing a mojo to do it? I would like to just do it with the pom if possible. Liz

RE: [SPAM] RE: Attaching artifacts

2008-12-04 Thread Sommers, Elizabeth
To: users@maven.apache.org Subject: [SPAM] RE: Attaching artifacts Importance: Low If your Maven POJO is a representation of a goal then a qualified 'yes' example located here http://maven.apache.org/maven-1.x/plugins/artifact/examples.html The bigger question is Why execute a build script

Re: [SPAM] RE: Attaching artifacts

2008-12-04 Thread Stephen Connolly
- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2008 11:45 AM To: users@maven.apache.org Subject: [SPAM] RE: Attaching artifacts Importance: Low If your Maven POJO is a representation of a goal then a qualified 'yes' example located here http://maven.apache.org

Re: Attaching artifacts

2008-12-04 Thread Brian Fox
Use the build-helper plugin --Brian (mobile) On Dec 4, 2008, at 8:25 AM, Sommers, Elizabeth [EMAIL PROTECTED] wrote: Is there anyway to attach an artifact without writing a mojo to do it? I would like to just do it with the pom if possible. Liz Sommers [EMAIL PROTECTED]

Re: Mojos Attaching Artifacts to Project for Install Deploy

2008-02-02 Thread simon
On Fri, 2008-02-01 at 17:15 -0700, Cam wrote: Hi, I'm looking for a way to attach an extra generated artifact to a project so it's installed and deployed in the standard project lifecycle, how can i do this? Do i need to write a mojo or can i just add this as part of the pom config?

Re: Mojos Attaching Artifacts to Project for Install Deploy

2008-02-02 Thread Erez Nahir
We are using http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-build-plugin-parent/jade-multijar-plugin/index.html Erez. On Feb 2, 2008 10:12 AM, simon [EMAIL PROTECTED] wrote: On Fri, 2008-02-01 at 17:15 -0700, Cam wrote: Hi, I'm looking for a way to attach an

Re: Mojos Attaching Artifacts to Project for Install Deploy

2008-02-02 Thread Cam
great - thanks for the links cam simon wrote: On Fri, 2008-02-01 at 17:15 -0700, Cam wrote: Hi, I'm looking for a way to attach an extra generated artifact to a project so it's installed and deployed in the standard project lifecycle, how can i do this? Do i need to write a mojo or can

Mojos Attaching Artifacts to Project for Install Deploy

2008-02-01 Thread Cam
Hi, I'm looking for a way to attach an extra generated artifact to a project so it's installed and deployed in the standard project lifecycle, how can i do this? Do i need to write a mojo or can i just add this as part of the pom config? Also, does anyone know if it's possible to create a

Re: Attaching artifacts from a reporting plugin

2007-09-21 Thread Wouter Hermeling
,siteReport,coeOutputFile); and project.getArtifact().setFile(coeOutputFile); both seem to be ignored when the plugin is run. Thanks Liz Sommers [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Attaching-artifacts-from-a-reporting-plugin-tf4480848s177.html

Attaching artifacts from a reporting plugin

2007-09-19 Thread Sommers, Elizabeth
Is there any way to attach an artifact (or define an artifact) from a reporting plugin? It is simple enough to do in a build plugin, but I cannot figure out how to do it from a report plugin. helper.attachArtifact(project,zip,siteReport,coeOutputFile); and