Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-05 Thread dan tran
http://mojo.codehaus.org/build-helper-maven-plugin/howto.html basically right after you use exec or antrun plugin to build your swf file, you can use build-helper-maven-plugin:attach-artifact goal to configure maven to install or deploy your swf to repo as needed On 4/4/06, Martin Cooper [EMAIL

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-05 Thread ian . d . stewart
@maven.apache.org m cc: Subject: Re: [M2] Custom 'packaging' without a custom plugin

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-05 Thread Martin Cooper
On 4/4/06, dan tran [EMAIL PROTECTED] wrote: http://mojo.codehaus.org/build-helper-maven-plugin/howto.html Yes, I found that. By the way, the page title looks wrong. It's currently Maven Build Dependency Plugin - Maven Build Helper Plugin. basically right after you use exec or antrun plugin

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-05 Thread Martin Cooper
On 4/5/06, Martin Cooper [EMAIL PROTECTED] wrote: On 4/4/06, dan tran [EMAIL PROTECTED] wrote: http://mojo.codehaus.org/build-helper-maven-plugin/howto.html Yes, I found that. By the way, the page title looks wrong. It's currently Maven Build Dependency Plugin - Maven Build Helper

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-05 Thread dan tran
On 4/5/06, Martin Cooper [EMAIL PROTECTED] wrote: On 4/4/06, dan tran [EMAIL PROTECTED] wrote: http://mojo.codehaus.org/build-helper-maven-plugin/howto.html Yes, I found that. By the way, the page title looks wrong. It's currently Maven Build Dependency Plugin - Maven Build Helper

[M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread Martin Cooper
I have a project that generates a Flash SWF file as its artifact. At the moment, I have the 'packaging' value set to 'jar', for lack of a better value. The problem is that this causes an empty jar file to be created, alongside my SWF file. However, I don't see how I can avoid this, since the other

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread dan tran
packagingpom/packaging if you want to deploy your .swf file, use build-helper-maven-plugin to attach that artifact to the project to be deploy/install -D On 4/4/06, Martin Cooper [EMAIL PROTECTED] wrote: I have a project that generates a Flash SWF file as its artifact. At the moment, I have

Re: [M2] Custom 'packaging' without a custom plugin?

2006-04-04 Thread Martin Cooper
On 4/4/06, dan tran [EMAIL PROTECTED] wrote: packagingpom/packaging Yep, that did the trick. Thanks! if you want to deploy your .swf file, use build-helper-maven-plugin to attach that artifact to the project to be deploy/install Hmm, I've been using deploy:deploy-file up 'til now, but I'm