build.xml (6467ecbf) | build.xml (c74863a0) |
---|---|
1<?xml version="1.0"?> 2<!--*********************************************************** 3 * 4 * Licensed to the Apache Software Foundation (ASF) under one 5 * or more contributor license agreements. See the NOTICE file 6 * distributed with this work for additional information 7 * regarding copyright ownership. The ASF licenses this file 8 * to you under the Apache License, Version 2.0 (the --- 16 unchanged lines hidden (view full) --- 25<project basedir="." default="test"> 26 <property environment="env" /> 27 <property name="junit.home" value="${env.JUNIT_HOME}" /> 28 <property name="dist.dir" value="." /> 29 <property name="dist.name" value="aoo_test" /> 30 <property name="junit.jar.repos" value="http://repo1.maven.org/maven2/junit/junit/4.10/junit-4.10.jar" /> 31 32 <path id="uno.classpath"> | 1<?xml version="1.0"?> 2<!--*********************************************************** 3 * 4 * Licensed to the Apache Software Foundation (ASF) under one 5 * or more contributor license agreements. See the NOTICE file 6 * distributed with this work for additional information 7 * regarding copyright ownership. The ASF licenses this file 8 * to you under the Apache License, Version 2.0 (the --- 16 unchanged lines hidden (view full) --- 25<project basedir="." default="test"> 26 <property environment="env" /> 27 <property name="junit.home" value="${env.JUNIT_HOME}" /> 28 <property name="dist.dir" value="." /> 29 <property name="dist.name" value="aoo_test" /> 30 <property name="junit.jar.repos" value="http://repo1.maven.org/maven2/junit/junit/4.10/junit-4.10.jar" /> 31 32 <path id="uno.classpath"> |
33 <fileset dir="${env.OUTDIR}" erroronmissingdir="false"> 34 <include name="**/juh.jar" /> 35 <include name="**/unoil.jar" /> 36 <include name="**/ridl.jar" /> 37 <include name="**/jurt.jar" /> | 33 <fileset dir="${env.OUTDIR}/bin" erroronmissingdir="false"> 34 <include name="juh.jar" /> 35 <include name="noil.jar" /> 36 <include name="ridl.jar" /> 37 <include name="jurt.jar" /> |
38 </fileset> 39 <fileset dir="${openoffice.home}" erroronmissingdir="false"> 40 <include name="**/juh.jar" /> 41 <include name="**/unoil.jar" /> 42 <include name="**/ridl.jar" /> 43 <include name="**/jurt.jar" /> 44 </fileset> 45 </path> --- 89 unchanged lines hidden (view full) --- 135 <tstamp/> 136 <zip destfile="${dist.dir}/${dist.name}_${DSTAMP}.zip" update="false"> 137 <zipfileset dir="." includes="lib/**, testcommon/**,testgui/**,testuno/**,build.xml" prefix="aoo_test/"/> 138 <zipfileset dir="." includes="test,test.bat" filemode="751" prefix="aoo_test/"/> 139 </zip> 140 </target> 141 142 <target name="test" depends="compile" description="start test"> | 38 </fileset> 39 <fileset dir="${openoffice.home}" erroronmissingdir="false"> 40 <include name="**/juh.jar" /> 41 <include name="**/unoil.jar" /> 42 <include name="**/ridl.jar" /> 43 <include name="**/jurt.jar" /> 44 </fileset> 45 </path> --- 89 unchanged lines hidden (view full) --- 135 <tstamp/> 136 <zip destfile="${dist.dir}/${dist.name}_${DSTAMP}.zip" update="false"> 137 <zipfileset dir="." includes="lib/**, testcommon/**,testgui/**,testuno/**,build.xml" prefix="aoo_test/"/> 138 <zipfileset dir="." includes="test,test.bat" filemode="751" prefix="aoo_test/"/> 139 </zip> 140 </target> 141 142 <target name="test" depends="compile" description="start test"> |
143 <property name="openoffice.home" value=""/> | |
144 <condition property="test.arg0" value="-Dopenoffice.home=${openoffice.home}"> 145 <isset property="openoffice.home" /> 146 </condition> 147 <pathconvert property="openoffice.pack" setonempty="false"> 148 <path> 149 <fileset dir="${env.SRC_ROOT}/instsetoo_native/${env.INPATH}/OpenOffice/archive/install/en-US" includes="*.tar.gz,*.zip" erroronmissingdir="false"/> 150 </path> 151 </pathconvert> --- 65 unchanged lines hidden --- | 143 <condition property="test.arg0" value="-Dopenoffice.home=${openoffice.home}"> 144 <isset property="openoffice.home" /> 145 </condition> 146 <pathconvert property="openoffice.pack" setonempty="false"> 147 <path> 148 <fileset dir="${env.SRC_ROOT}/instsetoo_native/${env.INPATH}/OpenOffice/archive/install/en-US" includes="*.tar.gz,*.zip" erroronmissingdir="false"/> 149 </path> 150 </pathconvert> --- 65 unchanged lines hidden --- |