Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 195998
Collapse All | Expand All

(-)src.config/org/eclipse/hyades/logging/parsers/SetConfig.java (+19 lines)
Lines 205-210 Link Here
205
		Variable.setPosition(var, "append");
205
		Variable.setPosition(var, "append");
206
		Variable.setValue(var, "%CLASSPATH_COM_IBM_ICU%");
206
		Variable.setValue(var, "%CLASSPATH_COM_IBM_ICU%");
207
		app.appendChild(var);
207
		app.appendChild(var);
208
209
		// bugzilla 195998 start
210
		// The following two classpath additions were made to enable sensor/extractor XPath filtering to work in a remote scenario 
211
212
		// org.eclipse.tptp.platform.models jars
213
		var = doc.createElement(Variable.TAG);
214
		Variable.setName(var, "CLASSPATH");
215
		Variable.setPosition(var, "prepend");
216
		Variable.setValue(var, "%CLASSPATH_ORG_ECLIPSE_TPTP_PLATFORM_MODELS%");
217
		app.appendChild(var);
218
219
		// org.eclipse.emf.ecore jars
220
		var = doc.createElement(Variable.TAG);
221
		Variable.setName(var, "CLASSPATH");
222
		Variable.setPosition(var, "prepend");
223
		Variable.setValue(var, "%CLASSPATH_ORG_ECLIPSE_JDT_CORE%");
224
		app.appendChild(var);
225
226
		// bugzilla 195998 end
208
		
227
		
209
		param = doc.createElement(Parameter.TAG);
228
		param = doc.createElement(Parameter.TAG);
210
		Parameter.setPosition(param, "prepend");
229
		Parameter.setPosition(param, "prepend");

Return to bug 195998