Where to find eclEmma dependencies?

I am trying to install eclEmma in my eclipse Juno installation.

When I install through "Install New Software", eclipse calculates the dependencies, asks me to accept the license, and then produces this error:

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 

If I go through the market, I will get

 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 

shortly after choosing what to install.

Question: What can I do to fix this? Do I need additional update sites?

Note. I just installed MoreUnit, so the internet connection seems fine.

+6
source share
3 answers

I had the same problem and manual installation of eclemma as described on the website did not work. This is what I did (on 4.3 Kepler).

Open eclemma-2.2.1.zip. Go to the features subdirectory. In your eclipse / feature directory, create a directory called jar, which is located in a subdirectory of the zip file function (without the jar suffix). Now open the jar and copy its contents into this newly created directory.

When this is done, it should look like this:

 ./eclipse/features/com.mountainminds.eclemma.feature_2.2.1.201306092145/ |-META-INF |-about.html |-feature.properties |-feature.xml 

Then copy the jars from the plugins directory inside zip to the eclipse installation plugins directory:

 ./eclipse/plugins/ |-com.mountainminds.eclemma.asm_2.2.1.201306092145.jar |-com.mountainminds.eclemma.core_2.2.1.201306092145.jar |-com.mountainminds.eclemma.debug.ui.compatibility_2.2.1.201306092145.jar |-com.mountainminds.eclemma.doc_2.2.1.201306092145.jar |-com.mountainminds.eclemma.ui_2.2.1.201306092145.jar |-org.jacoco.agent_0.6.3.201306030806.jar |-org.jacoco.core_0.6.3.201306030806.jar |-org.jacoco.report_0.6.3.201306030806.jar 

Start the eclipse, and the coating launcher should be visible and the coating should work.

+8
source

Installation on the market (option 1) and the update site (option 2) also did not work for me.

I installed it using

Option 3. Manual download and installation

+2
source

I tried to install manually by following the official documentation but this does not work for me.

Option 3: Manual Download and Installation

For manual installation, download the latest version of EclEmma. Unzip the archive into the folder folder of your Eclipse installation and restart Eclipse:

 <your eclipse installation>/ +- dropins/ +- eclemma-xyz/ +- plugins/ | +- ... +- feature/ +- ... 

Instead of directly placing the extracted zip file into a folder of folders. I copied all the jar files available in the folders with functions and plugins, and manually pasted them into the same functions and plugins folder that are available in the eclipse root folder, respectively. Now he started to work.

Decision:

 <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 
+1
source

All Articles