Multiple maven pom.xml files

14,284

You can create a multi module project. See examples here and here and here.

Share:
14,284
christophmccann
Author by

christophmccann

Building health tech.

Updated on June 04, 2022

Comments

  • christophmccann
    christophmccann almost 2 years

    I have an Eclipse project with a GWT client and a Restlet API. I normally use Maven for dependency management but I havent used it in an Eclipse project where seperate parts have seperate dependencies. For example - the client would use Google Gin for dependency injection and the server uses Google Guice.

    Am I able to split it into two seperate pom.xml files to manage the dependencies of both seperate areas?

    Thanks