i have a java project in maven, and some other projects in netbeans that aren't maven. The project that is in maven is used by all other projects. But, they are common projects and can't include a maven project as a project dependendy in netbeans. I don't want to include the jar file directly because, if i do this, everytime i will need to recompile the maven project and add his reference again to other projects. The advantage of project dependendy in netbeans is that you can modify the included project and the IDE will recompile it automaticaly when needed. I want to know if there are a maven plugin that can do what i said, a plugin that make maven project cam be included in common projects, or if exists any other solution.
Thanks