6

Eclipse Juno インストールに eclEmma をインストールしようとしています。

「新しいソフトウェアのインストール」を介してインストールすると、Eclipse は依存関係を計算し、ライセンスに同意するように求めてから、次のエラーを生成します。

An error occurred while collecting items to be installed
session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,com.mountainminds.eclemma.asm,2.2.0.201210261515
No repository found containing: osgi.bundle,com.mountainminds.eclemma.core,2.2.0.201210261515
No repository found containing: osgi.bundle,com.mountainminds.eclemma.debug.ui.compatibility,2.2.0.201210261515
No repository found containing: osgi.bundle,com.mountainminds.eclemma.doc,2.2.0.201210261515
No repository found containing: org.eclipse.update.feature,com.mountainminds.eclemma.feature,2.2.0.201210261515
No repository found containing: osgi.bundle,com.mountainminds.eclemma.ui,2.2.0.201210261515
No repository found containing: osgi.bundle,org.jacoco.agent,0.6.0.201210061924
No repository found containing: osgi.bundle,org.jacoco.core,0.6.0.201210061924
No repository found containing: osgi.bundle,org.jacoco.report,0.6.0.201210061924

私が市場を通り抜ければ、私は得る

An error occurred while collecting items to be installed
session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
No artifact repository available.
noArtifactRepositoriesAvailable

何をインストールするかを選択した直後。

質問: これを修正するにはどうすればよいですか? 追加の更新サイトが必要ですか?

注: MoreUnit をインストールしたばかりなので、インターネット接続は問題ないようです。

4

3 に答える 3

1

公式ドキュメントに従って手動でインストールしようとしましたが、うまくいきません。

オプション 3: 手動のダウンロードとインストール

手動でインストールするには、最新の EclEmma リリースをダウンロードしてください。アーカイブを Eclipse インストールの dropins フォルダーに解凍し、Eclipse を再起動します。

<your eclipse installation>/
+- dropins/
   +- eclemma-x.y.z/
      +- plugins/
      |  +- ...
      +- feature/
         +- ...

抽出した zip ファイルを直接 dropins フォルダーに配置する代わりに。機能およびプラグイン フォルダーで使用可能なすべての jar ファイルをコピーし、Eclipse ルート フォルダーの下で使用可能な同じ機能およびプラグイン フォルダーにそれぞれ手動で貼り付けます。今、それは働き始めました。

解決:

<your eclipse installation>/
   +- plugins/
   |  +- com.mountainminds.eclemma.asm_2.3.3.201602231923
   |  +- com.mountainminds.eclemma.core_2.3.3.201602231923
   |  +- com.mountainminds.eclemma.debug.ui.compatibility_2.3.3.201602231923
   |  +- com.mountainminds.eclemma.doc_2.3.3.201602231923
   |  +- com.mountainminds.eclemma.ui_2.3.3.201602231923
   |  +- org.jacoco.agent_0.7.6.201602180812
   |  +- org.jacoco.core_0.7.6.201602180812
   |  +- org.jacoco.report_0.7.6.201602180812
   +- feature/
      +- com.mountainminds.eclemma.feature_2.3.3.201602231923
于 2016-12-12T05:28:34.403 に答える