Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2016-06-10 19:54:03 +0000
committerMat Booth2016-06-10 19:54:03 +0000
commite3ac8d214ded798ec8f70eb5eda16ced8dec9ae8 (patch)
treeed54d2719758d32763a934f21aa87b0def80cdaa /providers/bundles
parent8956c5b6cf712345e2c84b8e4d9386d408350759 (diff)
downloadorg.eclipse.ecf-e3ac8d214ded798ec8f70eb5eda16ced8dec9ae8.tar.gz
org.eclipse.ecf-e3ac8d214ded798ec8f70eb5eda16ced8dec9ae8.tar.xz
org.eclipse.ecf-e3ac8d214ded798ec8f70eb5eda16ced8dec9ae8.zip
Bug 495920 - Tycho does not support "additional.bundles" in build.properties
Since "additional.bundles" is ignored by Tycho, we should additionally specify the "jars.extra.classpath" property in the build.properties, which serves the same purpose to add additional bundles to the build time classpath, just without the dependency analysis that PDE offers. Change-Id: I2427886e9fd8ba2b931a453404bc4dec0889218e Signed-off-by: Mat Booth <mat.booth@redhat.com>
Diffstat (limited to 'providers/bundles')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.dnssd/build.properties1
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.jmdns/build.properties1
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.jslp/build.properties1
3 files changed, 3 insertions, 0 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.dnssd/build.properties b/providers/bundles/org.eclipse.ecf.provider.dnssd/build.properties
index 5f1cc8ee3..8e48dfbda 100644
--- a/providers/bundles/org.eclipse.ecf.provider.dnssd/build.properties
+++ b/providers/bundles/org.eclipse.ecf.provider.dnssd/build.properties
@@ -6,4 +6,5 @@ bin.includes = META-INF/,\
plugin.properties,\
about.html
additional.bundles = org.eclipse.equinox.concurrent
+jars.extra.classpath = platform:/plugin/org.eclipse.equinox.concurrent
src.includes = about.html
diff --git a/providers/bundles/org.eclipse.ecf.provider.jmdns/build.properties b/providers/bundles/org.eclipse.ecf.provider.jmdns/build.properties
index 9b7f2a485..b4f983782 100644
--- a/providers/bundles/org.eclipse.ecf.provider.jmdns/build.properties
+++ b/providers/bundles/org.eclipse.ecf.provider.jmdns/build.properties
@@ -14,3 +14,4 @@ output.. = bin/
jre.compilation.profile = J2SE-1.4
javacErrors.. = -assertIdentifier,-enumIdentifier
additional.bundles = org.eclipse.equinox.concurrent
+jars.extra.classpath = platform:/plugin/org.eclipse.equinox.concurrent
diff --git a/providers/bundles/org.eclipse.ecf.provider.jslp/build.properties b/providers/bundles/org.eclipse.ecf.provider.jslp/build.properties
index 990268d68..664df3d29 100644
--- a/providers/bundles/org.eclipse.ecf.provider.jslp/build.properties
+++ b/providers/bundles/org.eclipse.ecf.provider.jslp/build.properties
@@ -10,4 +10,5 @@ source.. = src/
src.includes = about.html
jre.compilation.profile = J2SE-1.4
additional.bundles = org.eclipse.equinox.concurrent
+jars.extra.classpath = platform:/plugin/org.eclipse.equinox.concurrent
javacErrors.. = -assertIdentifier,-enumIdentifier

Back to the top