My background with eclipse is limited to introductory java college courses. This is my first time working on a project with over one million lines of codes and so many folders. Here's what I'm trying to do.
I'm trying to copy/paste java classes from one directory to another. Some of these classes have many imports and it makes duplicating very tedious. Currently, I copy/paste each dependency and change their package names. Then, I would have to copy/paste their dependencies as well, and so on. Each class I copy exponentially adds more classes to copy.
Is there an more automated way or at the least dependency viewer to keep track of where all the imports are coming from.
Use option Refactor > Move
on while right-clicking the project name.
Here is more information on it: Refactor > Move - Eclipse
It will change the packages names automatically. Don't ever do it manually.