I have a web project(maven) and this project has many dependencies as jar files(downloaded from maven repository) and two projects in my work space. recently I have changed my IDE from My Eclipse to Eclipse. In My Eclipse, when I try to deploy the root project into tomcat, that two dependency project classes are deploying in folder /WEB-INF/classes. But in eclipse these two projects are deploying as jar files in /WEB-INF/lib. As far as I know this because of this configuration on deployment assembly in My Eclipse:
But the corresponding configuration in eclipse is something like this:
Personally, I think the difference is between the two options bellow deployment assembly in My Eclipse, regarding merged deployment of modules. What kind of changes do I have to apply on eclipse to work same as My Eclipse for deployment? Thanks for your answers.

