Merge r1023825 TUSCANY-3726: Update jar filtering to exclude the *-dojo jars

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1027629 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
nash 2010-10-26 16:22:49 +00:00
parent c341752f38
commit 5ba881277a

View file

@ -267,6 +267,15 @@ final class NodeLauncherUtil {
return false;
}
// Filter out the "-dojo" runtime jars
if (name.startsWith("tuscany-binding-atom-js-dojo") ||
name.startsWith("tuscany-binding-jsonrpc-js-dojo") ||
name.startsWith("tuscany-implementation-widget-runtime-dojo") ||
name.startsWith("tuscany-web-javascript-dojo")) {
//FIXME This is temporary
return false;
}
// Include JAR and MAR files
if (name.endsWith(".jar")) {
return true;