Hi I am trying to restructure the package but with no luck. Suppose there are multiple packages in a project like:
main.java.com.wms.package1
main.java.com.wms.package2
main.java.com.wms.package3
I want to restructure it in the below format:
main.java
com.wms.package1
com.wms.package2
com.wms.package3
Think of it this way there are 50 packages that start with main.java. So I want to make main.java as main package and the 50 packages under the main.java package How do I do this?