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 /framework
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 'framework')
-rw-r--r--framework/bundles/org.eclipse.ecf.discovery.ui.userinput/build.properties1
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice.rpc/build.properties1
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice.soap/build.properties2
3 files changed, 4 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.discovery.ui.userinput/build.properties b/framework/bundles/org.eclipse.ecf.discovery.ui.userinput/build.properties
index 2083e236d..11801c332 100644
--- a/framework/bundles/org.eclipse.ecf.discovery.ui.userinput/build.properties
+++ b/framework/bundles/org.eclipse.ecf.discovery.ui.userinput/build.properties
@@ -10,3 +10,4 @@ source.. = src/
src.includes = about.html,\
icons/
additional.bundles = org.eclipse.equinox.concurrent
+jars.extra.classpath = platform:/plugin/org.eclipse.equinox.concurrent
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.rpc/build.properties b/framework/bundles/org.eclipse.ecf.remoteservice.rpc/build.properties
index 672c9679d..dd3df998b 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice.rpc/build.properties
+++ b/framework/bundles/org.eclipse.ecf.remoteservice.rpc/build.properties
@@ -12,3 +12,4 @@ bin.includes = META-INF/,\
plugin.xml,\
plugin.properties
additional.bundles = org.eclipse.equinox.concurrent
+jars.extra.classpath = platform:/plugin/org.eclipse.equinox.concurrent
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice.soap/build.properties b/framework/bundles/org.eclipse.ecf.remoteservice.soap/build.properties
index b4715cbb6..2f8536959 100644
--- a/framework/bundles/org.eclipse.ecf.remoteservice.soap/build.properties
+++ b/framework/bundles/org.eclipse.ecf.remoteservice.soap/build.properties
@@ -8,3 +8,5 @@ bin.includes = META-INF/,\
src.includes = about.html
additional.bundles = org.eclipse.osgi,\
org.eclipse.equinox.concurrent
+jars.extra.classpath = platform:/plugin/org.eclipse.equinox.concurrent,\
+ platform:/plugin/org.eclipse.osgi

Back to the top