On Fri, Mar 28, 2008 at 12:21 PM, Mark Webb <[EMAIL PROTECTED]> wrote: > Here is the problem that I have with building an eclipse project using > the maven files in ftpserver trunk: > > 1. There is a dependency for ftplet-api.jar. If this is a subproject, > why is there a dependency for a pre-made jar? > 2. There is also a dependency for ftpserver-core.jar. Again, if > ftpserver core is a subproject to ftpserver, why a dependency for the > pre-made jar. > > I wish I knew how to deal with maven pom.xml files better so that I > could help, but my first inclination is to use the mina trunk pom.xml > file as a template and move forward from there.
You have to declare dependencies to other modules in Maven. Make sure you run mvn eclipse:eclipse from the root of the project to get the Eclipse plugin to generate project references rather than imports of JARs. /niklas
