diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 14:11:40 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 14:11:40 +0000 |
commit | de5994e25146065ff23e20c3e1808d869ccf545a (patch) | |
tree | f61de50a15fa1c82e2d93bbcdb05ed96a0f44b4b /xmerge/workben | |
parent | a9ce3bb2758e90cbff0686913552488178f96202 (diff) |
INTEGRATION: CWS systemjava (1.4.2); FILE MERGED
2006/03/22 14:51:26 cmc 1.4.2.1: #i52974# support using the system xerces/xalan
Diffstat (limited to 'xmerge/workben')
-rw-r--r-- | xmerge/workben/build.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/xmerge/workben/build.xml b/xmerge/workben/build.xml index 304ad2259e06..2a3a3961ff9d 100644 --- a/xmerge/workben/build.xml +++ b/xmerge/workben/build.xml @@ -5,9 +5,9 @@ $RCSfile: build.xml,v $ - $Revision: 1.4 $ + $Revision: 1.5 $ - last change: $Author: vg $ $Date: 2006-03-16 11:18:59 $ + last change: $Author: hr $ $Date: 2006-04-19 15:11:40 $ The Contents of this file are made available subject to the terms of GNU Lesser General Public License Version 2.1. @@ -57,11 +57,15 @@ <!-- define how to handle CLASSPATH environment --> <property name="build.sysclasspath" value="ignore"/> + <property environment="env"/> + <property name="env.XML_APIS_JAR" value="${solar.jar}/xml-apis.jar"/> + <property name="env.XERCES_JAR" value="${solar.jar}/xercesImpl.jar"/> + <!-- classpath settings for javac tasks --> <path id="classpath"> <pathelement location="${build.class}"/> - <pathelement location="${solar.jar}/xml-apis.jar"/> - <pathelement location="${solar.jar}/xercesImpl.jar"/> + <pathelement location="${env.XML_APIS_JAR}"/> + <pathelement location="${env.XERCES_JAR}"/> </path> <!-- set wether we want to compile with or without deprecation --> |