Hi John, Sorry for the delayed response. I'm looking at it0016 and the WAR does not include .svn directories (these are excluded by default from the copyDirectoryStructure method).
Are you still experiencing this? If so, can you try a clean first? Cheers, Brett On 7/15/05, John Fallows <[EMAIL PROTECTED]> wrote: > MNG-320 seems to still be a problem in 2.0-alpha-3. > > http://jira.codehaus.org/browse/MNG-320 > > Looking at the WarMojo source on the trunk, it seems there is a TODO > comment indicating that includes and excludes should be applied while > copying resources. > > if ( new File( warSourceDirectory ).exists() ) > { > //TODO : Use includes and excludes > FileUtils.copyDirectoryStructure( sourceDirectory, webappDirectory ); > } > > It seems that this should read: > > if ( new File( warSourceDirectory ).exists() ) > { > FileUtils.copyDirectoryStructure( sourceDirectory, webappDirectory, > includes, excludes ); > } > > given that all the hard work was done in Plexus-utils to support a > version of FileUtils.copyDirectoryStructure that also takes includes > and excludes, but it is not being called from WarMojo. > > Should MNG-320 be reopened, or is something else going on here? > > Kind Regards, > John Fallows. > > --------------------------------------------------------------------- > 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]
