I have multi module web application:
Parent
|_common
|_dao
|_service
|_web (war)
And i want to create a new project that contains only scheduled tasks, but it depends on the modules above (except the web module).
I have create a new web module in the same parent project, the compilation maven is fine and it generate two war files after build success
... Also everything is fine in eclipse and i can see all my dependencies
. But when i deploy the war on tomcat i get ClassNotFoundException
from "common module
" in both war modules and also on eclipse i had the same exception.
I hope you understand what i want to do