Author: bfitzpat
Date: 2011-10-13 13:04:04 -0400 (Thu, 13 Oct 2011)
New Revision: 35629
Modified:
branches/jbosstools-3.2.x/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/AbstractESBRuntimeResolver.java
Log:
JBDS-1865 - updating library to include riftsaw-esb.esb in 3.2.x
Modified:
branches/jbosstools-3.2.x/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/AbstractESBRuntimeResolver.java
===================================================================
---
branches/jbosstools-3.2.x/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/AbstractESBRuntimeResolver.java 2011-10-13
16:30:33 UTC (rev 35628)
+++
branches/jbosstools-3.2.x/esb/plugins/org.jboss.tools.esb.project.core/src/org/jboss/tools/esb/core/runtime/AbstractESBRuntimeResolver.java 2011-10-13
17:04:04 UTC (rev 35629)
@@ -25,6 +25,7 @@
protected final static String JBOSSESB_SAR = "jbossesb.sar"; //$NON-NLS-1$
protected final static String SOAP_AS_LOCATION = "jboss-as"; //$NON-NLS-1$
protected final static String ROSETTA_JAR = "jbossesb-rosetta.jar";
//$NON-NLS-1$
+ protected final static String RIFTSAWESB_ESB =
"riftsaw-esb.esb";//$NON-NLS-1$
public List<IPath> getJarDirectories(String runtimeLocation, String configuration)
{
@@ -43,12 +44,13 @@
IPath esbPath = deployPath.append(JBOSSESB_ESB);
IPath sarPath = deployPath.append(JBOSSESB_SAR);
+ IPath riftsawESBPath = deployPath.append(RIFTSAWESB_ESB);
-
IPath libPath = rtHome.append("lib");
directories.add(esbPath);
directories.add(sarPath.append("lib"));
+ directories.add(riftsawESBPath.append("lib"));
directories.add(libPath.append(JBOSSESB_ESB));
directories.add(libPath.append(JBOSSESB_SAR).append("lib"));
directories.add(soapDeployPath.append(JBOSSESB_ESB));