- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Scala plug-in doesn't export any packages
Tue, 2009-02-17, 19:32
Would it be reasonable to ask that the Eclipse plug-in export all it's
packages (currently none exported)? I would like to write some
experimental code making use of SDT, and I don't care if you break my
code in future versions.
The common practice (actually requirement, I think) in Eclipse is to
export ALL packages of all plug-ins, the non-API packages are marked as
internal, for example:
Export-Package: org.eclipse.pde.internal.ui;x-internal:=true,
org.eclipse.pde.internal.ui.build;x-internal:=true,
org.eclipse.pde.internal.ui.commands;x-internal:=true,
....
On Tue, Feb 17, 2009 at 1:32 PM, Erkki Lindpere <erkki@lap.ee> wrote: