Hi, My project structure is as follows. ----parent/implementation/folder1/pom.xml --- parent/implementation/framework/pom.xml --- parent/implementation/framework/client/pom.xml --- parent/implementation/framework/server/pom.xml --- child1/implementation/pom.xml --- child1/implementation/server/pom.xml
In the above structure framework/server/pom.xml has dependencies on spring-bean package and the dependency scope is 'compile'. pom available in child1/implementation/server/pom.xml includes this submodule dependency with scope compile. Eventhough the spring-bean package is not required by the source in child1/implementation/server/ folder it throws compilation errors when doing 'mvn clean install' from that submodule. It works perfect when running 'mvn clean install' from parent folder. (parent/implementation/folder1/pom.xml). Can someone throw more light on this? Thanks in advance. -Senthil -- View this message in context: http://www.nabble.com/submodule-not-compiling-tp21580390p21580390.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]
