插件Eclipse依赖项

时间:2013-11-05 15:00:24

标签: eclipse plugins dependencies buildpath

我有以下问题: 在同一工作区中,我有3个项目,一个是插件项目,另外两个包含我应该在插件中使用的类。 如何设置依赖项? 错误是:

!ENTRY org.eclipse.osgi 2 0 2013-11-05 15:53:12.721
!MESSAGE The activator amedeoantonio.Activator for bundle AmedeoAntonio is invalid
!STACK 0
org.osgi.framework.BundleException: The activator amedeoantonio.Activator for bundle AmedeoAntonio is invalid...![enter image description here][1] 
Root exception:
java.lang.ClassNotFoundException: amedeoantonio.Activator"

谢谢!

1 个答案:

答案 0 :(得分:2)

插件只能依赖于自己包含的其他插件或jar。另外两个项目也需要是插件,第一个和它们之间有依赖关系,或者它们编译的jar需要打包到你拥有的插件中,并在MANIFEST.MF中成为其类路径的一部分文件。