Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2016-01-06 18:39:52 +0000
committerGerrit Code Review @ Eclipse.org2016-01-10 18:32:00 +0000
commit12843ef1d7d1f60504f58e79c11693210fd8b735 (patch)
treee8eedaaaeb53ecddbe1f59a4a741a4b75d3e4416
parent1d75c92c77ff26cbabbc14f1b90b38c0d328acd8 (diff)
downloadorg.eclipse.cdt-12843ef1d7d1f60504f58e79c11693210fd8b735.tar.gz
org.eclipse.cdt-12843ef1d7d1f60504f58e79c11693210fd8b735.tar.xz
org.eclipse.cdt-12843ef1d7d1f60504f58e79c11693210fd8b735.zip
Add some missing libraries to target
When launching with all CDT plugins, there were a few errors about missing libraries. This patch adds the missing libraries (hamcrest, slf4j.impl). Change-Id: Ib6925c46787e90e9c345bc03bca5049bfc1475ac Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
-rw-r--r--releng/org.eclipse.cdt.target/cdt.target4
1 files changed, 3 insertions, 1 deletions
diff --git a/releng/org.eclipse.cdt.target/cdt.target b/releng/org.eclipse.cdt.target/cdt.target
index 6f67d144c75..3ecc8a2df67 100644
--- a/releng/org.eclipse.cdt.target/cdt.target
+++ b/releng/org.eclipse.cdt.target/cdt.target
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<?pde version="3.8"?><target name="cdt" sequenceNumber="4">
+<?pde version="3.8"?><target name="cdt" sequenceNumber="5">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.apache.commons.compress" version="0.0.0"/>
@@ -9,6 +9,8 @@
<unit id="org.junit" version="0.0.0"/>
<unit id="org.junit.source" version="0.0.0"/>
<unit id="org.mockito" version="0.0.0"/>
+<unit id="org.slf4j.impl.log4j12" version="0.0.0"/>
+<unit id="org.hamcrest" version="0.0.0"/>
<unit id="org.hamcrest.core" version="0.0.0"/>
<unit id="com.google.gson" version="0.0.0"/>
<unit id="org.easymock" version="0.0.0"/>

Back to the top