On Dec 22, 2014 10:08 PM, "Benson Margulies" <[email protected]> wrote: > > So, buried in some code of mine is a dev tool. I could move it to another > jar. For now, I'd like to find some way to prevent it from producing these > Import-Package elements > > javax.swing.text,javax.xml.stream > > > Can I put some ! items into Import-Package without disturbing the plugin's > automatic generation of the rest?
Yup, just be as specific as you can, and don't forget to finish with the wildcard (which is the behavior when using no Import-Package statement at all): !javax.swing.text,!javax.xml.stream,* - Ray

