I want to create a project which contains a parent pom.xml with different common dependencies (Like Spring, JDBC, Log4j etc.) and it can be deployed on weblogic so that I can access the web-services following Project Configuration.
- Main Project (Deployed on Oracle Weblogic) . pom.xml (Parent Pom containing all following modules in it)
- Module 1 pom.xml
- Module 2 pom.xml
What should be the starting point and configurations, while i am using the following way to create this.
- Have created Main Project with packing type pom (For creating Module based maven project).
- Module 1 with packing type WAR.
- Module 2 with packing type WAR.
Then how can i deploy the main project in web-logic to make deployment simple.
Thanks In advance, Although I am figuring out the ways to complete this task parallelly but all other help will be appreciated .