hi all i'm new to using maven. i'm developing a huge java enterprise application. up to now, we are using ant to compile, pack and distribute our sources.
we also have some kind of module architecture. we have several source folders which are ordered as a 'stack', so lower 'modules' must not reference higher 'modules'. this is accomplished by compiling the folders in the propper order. in the end all classfiles are in the same directory. my 'poor-man's-approach' was, to use the builder-helper-plugin to add multiple source-folders. but with that solution, inter-module-references are possible again. how can i set up our project with maven? do i really have to set up a project for each of your modules and define the dependencies, use the reactor plugin or something else to build it? our folder sturcture looks something like: root ----java -------utils -------servlets -------store -------orgdata -------core so utils may not reference any classes from serlvet/store... and core may reference all other modules thanks for some advice cu -- View this message in context: http://www.nabble.com/project-layout%2C-multiple-inter-dependent-modules-tp22862757p22862757.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
