Re: site with file copy

2018-05-04 Thread Mark Prins
On 03-05-18 08:03, Philipp Kraus wrote: Hello, I’m using „mvn site“ command to build for my project the project website as HTML code, During the site goal is running I need to copy some files into the target/site directory, how can I do this? I need to copy some single files to the output dire

site with file copy

2018-05-02 Thread Philipp Kraus
Hello, I’m using „mvn site“ command to build for my project the project website as HTML code, During the site goal is running I need to copy some files into the target/site directory, how can I do this? I need to copy some single files to the output director, but only on the site goal. Thanks

Maven build resource file copy failed.

2018-02-11 Thread Ben.Sin
); File destFile = new File(destFilePath); FileUtils.copyFile(srcFile, destFile); assertEquals(srcFile.length(), destFile.length()); } But it was passed junit test by using the file copy by my own. The source code is the following. /** * Copy a file to b file. * @param src * @param dest * @retu

Windows 7 symlinks and maven file copy

2011-04-27 Thread Lucas Persson
Hi We have just updated to Windows 7 and for some resource files in one of our projects we are using Windows 7 symlinks. The problem is that the maven-resource-plugin uses some org.codehaus.plexus.util.FileUtils class from Plexus which does a

Re: Remote file copy

2008-04-09 Thread Luke Daley
On 09/04/2008, at 9:46 PM, [EMAIL PROTECTED] wrote: I have a need to implement Maven style deploy functionality (copy files to multiple remote servers as defined in an xml file on the source machine). Attempts to find something using google have been unsuccessful, mostly due to the general

Remote file copy

2008-04-09 Thread robert . egan
I have a need to implement Maven style deploy functionality (copy files to multiple remote servers as defined in an xml file on the source machine). Attempts to find something using google have been unsuccessful, mostly due to the generality of the query. What other Apache projects might be best

Re: File Copy

2006-05-19 Thread Geoffrey De Smet
It's probably because you didn't define at what or the antrun plugin should do that task, see its docs or the m2 book. Jamie Bisotti wrote: On 5/19/06, Patil, Shivakumar (GE Healthcare) <[EMAIL PROTECTED]> wrote: I want to copy a file from one directory to another. Is there any standard & e

Re: File Copy

2006-05-19 Thread Jamie Bisotti
On 5/19/06, Patil, Shivakumar (GE Healthcare) <[EMAIL PROTECTED]> wrote: I want to copy a file from one directory to another. Is there any standard & elegant way to copy a file in Maven.I could not find any.(Suggest me any if you know). Instead Iam using the ant plugin for maven & trying to do t

File Copy

2006-05-19 Thread Patil, Shivakumar \(GE Healthcare\)
I want to copy a file from one directory to another. Is there any standard & elegant way to copy a file in Maven.I could not find any.(Suggest me any if you know). Instead Iam using the ant plugin for maven & trying to do the copy. I tried this... org.apache.maven.plugins mave