From b978f642a6631e2091bd3ce139dc935832a06f84 Mon Sep 17 00:00:00 2001 From: edwardsmj Date: Fri, 7 May 2010 15:21:46 +0000 Subject: Fix enabling Tuscany SDO modules to load under OSGi - code previously treated them as if they were Tuscany SCA modules and as a result they were not being loaded at all under OSGi git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@942121 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tuscany/sca/node/equinox/launcher/NodeLauncherUtil.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sca-java-2.x/trunk/modules/node-launcher-equinox/src/main') diff --git a/sca-java-2.x/trunk/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/NodeLauncherUtil.java b/sca-java-2.x/trunk/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/NodeLauncherUtil.java index 939372d782..fff146ace9 100644 --- a/sca-java-2.x/trunk/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/NodeLauncherUtil.java +++ b/sca-java-2.x/trunk/modules/node-launcher-equinox/src/main/java/org/apache/tuscany/sca/node/equinox/launcher/NodeLauncherUtil.java @@ -1194,9 +1194,11 @@ final class NodeLauncherUtil { return true; } - // Filter out the Tuscany jars - since the development versions of these are used + // Filter out the Tuscany SCA jars - since the development versions of these are used // from the \target\classes directories... if (name.startsWith("tuscany")) { + // tuscany-sdo jars don't form part of the SCA modules... + if (name.startsWith("tuscany-sdo")) return true; return false; } -- cgit v1.2.3