-
Hi! I try to make my own nb module for support proprietary task repository. As template I am using netbeans-github-issues-plugin. When I try to use visual component from public package of
I can't figure out if I only use interfaces of dependent public nb modules - everything works fine, but after I try to add class dependency - everything crashes. In |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
As external plugin you won't be able to access those packages unless you are registered as friend in the You can use the implementation dependency, but this would require to create a new build of your plugin every time there is a new NetBeans release. |
Beta Was this translation helpful? Give feedback.
-
As soon as I asked a question, I myself was able to answer it. The rubber duck effect in action :)
The idea became clear. It's better not to create unnecessary cohesion with the implementation of the netbeans itself, but if you still decide to do this, then I'll leave it here: |
Beta Was this translation helpful? Give feedback.
As external plugin you won't be able to access those packages unless you are registered as friend in the
team.commons
module.You can use the implementation dependency, but this would require to create a new build of your plugin every time there is a new NetBeans release.