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

Reply via email to