我正在开发一个基于 Eclipse 插件的 RCP 应用程序。在我的一个插件项目中,我添加了另一个插件项目作为依赖项。假设项目 A 将项目 B 作为其清单下定义的依赖项。项目 B 包含 jackcess.jar 文件作为引用库。
在 Project BI 中有一个名为 Mirror.java 的类
public Mirror(String source, String template, String target) throws SQLException, IOException {
this.sourceString=source;
this.templateFileString=template;
this.targetFileString=target;
}
当我尝试创建 Mirror 类的对象时,从项目 A 内部
Mirror m = new Mirror(connectionString, "EABase_JET4_empty.eap",platformDB.getAbsolutePath());
我收到以下错误
java.lang.NoClassDefFoundError: com/healthmarketscience/jackcess/ImportFilter
项目 B 的 build.properties(包含 jackcess.jar)
bin.includes = META-INF/,\
src/main/resources/lib/jackcess-1.2.6.af3.jar
清单.MF
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: MirrorDbToEap
Bundle-SymbolicName: MirrorDbToEap
Bundle-Version: 1.0.0
Export-Package: .,
com.example.jetdb.mirror
Require-Bundle: CommonsIo;bundle-version="2.0.0",
org.apache.commons.lang;bundle-version="2.6.0",
org.apache.commons.logging;bundle-version="1.0.4"
有人知道这里出了什么问题吗?
谢谢