I am trying to structure a new Java code base and have an issue for which I need direction.
It had seemed sensible to have a repository with a single directory tree holding all the code consistent with the package name structure. I have several projects using this source and want these to use this code from the central repository. What I am finding is that netbeans is objecting to this. I can set my first project up fine, I add the top level src folder and include / exclude folders to identify the specific code for the project. The second project though causes netbeans to object saying the "Package folder already used in project".
My first question is whether I am trying to do something unconventional by having a single Java repository with several projects using different parts of the code.
Secondly how can I configure netbeans to do this?