web-dev-qa-db-ja.com

org.osgi.framework.BundleException:モジュールを解決できませんでした

Eclipseプラグイン開発ターゲットをセットアップしようとしていますが、次のエラーが複数回表示されます。

!ENTRY org.Eclipse.e4.ui.css.swt 4 0 2015-01-30 15:15:06.879
!MESSAGE FrameworkEvent ERROR
!STACK 0
org.osgi.framework.BundleException: Could not resolve module: org.Eclipse.e4.ui.css.swt [955]
Unresolved requirement: Require-Bundle: org.Eclipse.e4.ui.css.core; bundle-version="0.9.0"
-> Bundle-SymbolicName: org.Eclipse.e4.ui.css.core; bundle-version="0.10.100.v20140424-2042"; singleton:="true"
   org.Eclipse.e4.ui.css.core [1134]
     Unresolved requirement: Require-Bundle: org.Apache.batik.css; bundle-version="1.7.0"
       -> Bundle-SymbolicName: org.Apache.batik.css; bundle-version="1.7.0.v201011041433"
          org.Apache.batik.css [1177]
            Unresolved requirement: Import-Package: org.w3c.dom.events; version="[3.0.0,4.0.0)"

これは、これらのプラグインのいずれも解決できないことを意味しますか、それとも最後のプラグインorg.w3c.dom.eventsだけではありませんか、それともorg.Eclipse.e4.ui.css.coreのバンドルバージョンの不一致の結果ですか?

5
Dreiven

私も同じ問題に直面しました。製品ファイルまたは起動構成の依存関係にorg.w3c.dom.eventsプラグインがありませんでした。

2
Alexander Baier

解決できないのはorg.w3c.dom.eventsだけです。

org.w3c.dom.eventsプラグインが必要です。

プラグイン開発用のターゲットプラットフォームを設定する場合、最も簡単に使用できるのは、「EclipseSDK」ダウンロードフォームのすべてです http://download.Eclipse.org/Eclipse/downloads/

2
greg-449