Re: copy file in maven

2007-06-15 Thread acec acec
But I do not need scp, I only need file copy on my localhost. :-( Maybe I have to use ant plugin. --- Bernd Bohmann [EMAIL PROTECTED] wrote: Hello Jon, just deployed a little bit documentation about the wagon plugin. http://myfaces.apache.org/wagon-maven-plugin We are using this

Re: copy file in maven

2007-06-15 Thread Ralf Quebbemann
Files can also be copied locally with the wagon-maven-plugin (use file protocol instead of scp). BTW, the plugin is able to copy multiple files, because it takes an input directory as argument. Filtering or multiple source/destination directories do not work currently. I use this plugin for

copy file in maven

2007-06-14 Thread acec acec
hi, What's the easiest way to copy file in maven? Should I use ant plugin to do that? Thanks. Ask a question on any topic and get answers from real people. Go to Yahoo! Answers and share what you know at http://ca.answers.yahoo.com

Re: copy file in maven

2007-06-14 Thread Eric Redmond
Yeah, ant is the easiest way. Eric On 6/14/07, acec acec [EMAIL PROTECTED] wrote: hi, What's the easiest way to copy file in maven? Should I use ant plugin to do that? Thanks. Ask a question on any topic and get answers from real people. Go to Yahoo! Answers and share what you know

Re: copy file in maven

2007-06-14 Thread Jeff Mutonho
On 6/14/07, Eric Redmond [EMAIL PROTECTED] wrote: Yeah, ant is the easiest way. Eric Or you can try this : http://quebbemann.kicks-ass.net/development/qu-base/maven-plugins/copy-maven-plugin/index.html Don't take the name of root in vain. Jeff Mutonho Cape Town South Africa

Re: copy file in maven

2007-06-14 Thread Nathan Maves
First what is the reason for your need to copy a file? The first thing that triggers in my mind is that you have a resource file that you need copied to your artifact. If this is not the case then you may need to define your problem a little better. Nathan On 6/14/07, Jeff Mutonho [EMAIL

Re: copy file in maven

2007-06-14 Thread acec acec
Hi, We have an old project, which uses ant and could generate a customized tomcat folder. My new project using maven, I need copy some files into old customized tomcat folder. Thanks. Arden --- Nathan Maves [EMAIL PROTECTED] wrote: First what is the reason for your need to copy a file?

Re: copy file in maven

2007-06-14 Thread Ralf Quebbemann
Hi, maybe it's not the best way to use the recommended copy-maven-plugin. Although it does its job (and yes I wrote it) there are plugins out there which have better capabilities. You might want to check out the wagon-maven-plugin from the MyFaces project:

RE: copy file in maven

2007-06-14 Thread Brian E. Fox
If the file is in the repository, you can use the maven-dependency-plugin:copy goal. -Original Message- From: acec acec [mailto:[EMAIL PROTECTED] Sent: Thursday, June 14, 2007 12:01 PM To: users@maven.apache.org Subject: copy file in maven hi, What's the easiest way to copy file

Re: copy file in maven

2007-06-14 Thread Jon Strayer
Is there any documentation on the wagon plugin? On 6/14/07, Ralf Quebbemann [EMAIL PROTECTED] wrote: Hi, maybe it's not the best way to use the recommended copy-maven-plugin. Although it does its job (and yes I wrote it) there are plugins out there which have better capabilities. You might

Re: copy file in maven

2007-06-14 Thread Bernd Bohmann
Hello Jon, just deployed a little bit documentation about the wagon plugin. http://myfaces.apache.org/wagon-maven-plugin We are using this plugin to publish the nightly builds to the nightly build download location. Regards Bernd Jon Strayer wrote: Is there any documentation on the wagon