I have got a Java
Maven project in Eclipse which imports some external plug-ins for which I do not have the source code.
One of those plug-ins should be able to access some of the public classes from my project. The package/class name can be defined dynamically.
After some research I found this thread which says, that exported packages should be visible to other plug-ins. But unfortunately this does not work in my case.
Does anybody have any idea how I could give the imported plugin access to my classes? Thanks!