Not quite an expert on maven...but have you taken a look at maven's module
configuration?

I have setup a parent directory that "links" all the necessary modules. 
This parent pom needs to be of packaging type "pom" to nest other modules.

For example:

Directory structure of the following:

arch/
app/
  + app-domain/
  + app-main-wicket/
  + app-admin-wicket/

app/pom.xml would have the following modules defined

        <modules>
                <module>../arch</module>
                <module>app-domain</module>
                <module>app-main-wicket</module>
                <module>app-admin-wicket</module>
        </modules>

There probably is another way to do this but it works for us.


-- 
View this message in context: 
http://www.nabble.com/Howto--Wicket%2C-Maven%2C-and-multiple-Eclipse-Java-projects-tp15661736p15793418.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to