If you are using <packaging>war</packaging>, then the maven-war-plugin will automatically pick up the resources in src/main/webapp, which means you do not have to configure that directory as a resource. Additionally, the maven-resources-plugin automatically picks up resources in src/main/resources, so you don't have to explicitly configure that either. Try removing that configuration and see what happens.
-Richard On Sun, May 3, 2009 at 7:19 AM, Alan Garfield <a...@fromorbit.com> wrote: > Hi all, > > Just a quick question, I'd like to move all the .html files so my > directory layout will be :- > > . > |-- pom.xml > \-- src > |-- main > | |-- java > | | \-- com > | | \-- foo > | | |-- WicketApplication.java > | | \-- bar.java > | |-- resources > | \-- webapp > | |-- com > | | \-- foo > | | \-- bar.html > | \-- WEB-INF > \-- test > > I've setup my pom.xml like :- > > <build> > <resources> > <resource> > <directory>src/main/resources</directory> > </resource> > <resource> > <directory>src/main/webapp</directory> > <includes> > <include>**/*.html</include> > </includes> > </resource> > [..] > </resources> > </build> > > Which works, but I end up with duplicate html files and directories in > the root of the war. I've not found an easy way to change this default. > Anyone else have an idea? > > Many thanks! > > Alan. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > >