build.xml (5148ee0d) | build.xml (9f57b441) |
---|---|
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 --- 55 unchanged lines hidden (view full) --- 64 <copy includeemptydirs="false" todir="testcommon/bin"> 65 <fileset dir="testcommon/source"> 66 <exclude name="**/*.java" /> 67 </fileset> 68 </copy> 69 </target> 70 71 <target name="testcommon.compile" depends="testcommon.init, prepare.junit"> | 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 --- 55 unchanged lines hidden (view full) --- 64 <copy includeemptydirs="false" todir="testcommon/bin"> 65 <fileset dir="testcommon/source"> 66 <exclude name="**/*.java" /> 67 </fileset> 68 </copy> 69 </target> 70 71 <target name="testcommon.compile" depends="testcommon.init, prepare.junit"> |
72 <javac destdir="testcommon/bin" debug="on" source="1.6" encoding="utf-8" includeantruntime="false"> | 72 <javac destdir="testcommon/bin" debug="on" source="1.6" target="1.6" encoding="utf-8" includeantruntime="false"> |
73 <src path="testcommon/source"/> 74 <classpath> 75 <fileset dir="lib"> 76 <include name="*.jar" /> 77 </fileset> 78 </classpath> 79 </javac> 80 </target> 81 82 <target name="testgui.init"> 83 <mkdir dir="testgui/bin" /> 84 <copy includeemptydirs="false" todir="testgui/bin"> 85 <fileset dir="testgui/source"> 86 <exclude name="**/*.java" /> 87 </fileset> 88 </copy> 89 </target> 90 91 <target name="testgui.compile" depends="testcommon.compile, testgui.init"> | 73 <src path="testcommon/source"/> 74 <classpath> 75 <fileset dir="lib"> 76 <include name="*.jar" /> 77 </fileset> 78 </classpath> 79 </javac> 80 </target> 81 82 <target name="testgui.init"> 83 <mkdir dir="testgui/bin" /> 84 <copy includeemptydirs="false" todir="testgui/bin"> 85 <fileset dir="testgui/source"> 86 <exclude name="**/*.java" /> 87 </fileset> 88 </copy> 89 </target> 90 91 <target name="testgui.compile" depends="testcommon.compile, testgui.init"> |
92 <javac destdir="testgui/bin" debug="on" source="1.6" encoding="utf-8" includeantruntime="false"> | 92 <javac destdir="testgui/bin" debug="on" source="1.6" target="1.6" encoding="utf-8" includeantruntime="false"> |
93 <src path="testgui/source"/> 94 <classpath> 95 <fileset dir="lib"> 96 <include name="*.jar" /> 97 </fileset> 98 <pathelement location="testcommon/bin" /> 99 </classpath> 100 </javac> --- 4 unchanged lines hidden (view full) --- 105 <copy includeemptydirs="false" todir="testuno/bin"> 106 <fileset dir="testuno/source"> 107 <exclude name="**/*.java" /> 108 </fileset> 109 </copy> 110 </target> 111 112 <target name="testuno.compile" depends="testcommon.compile, testuno.init"> | 93 <src path="testgui/source"/> 94 <classpath> 95 <fileset dir="lib"> 96 <include name="*.jar" /> 97 </fileset> 98 <pathelement location="testcommon/bin" /> 99 </classpath> 100 </javac> --- 4 unchanged lines hidden (view full) --- 105 <copy includeemptydirs="false" todir="testuno/bin"> 106 <fileset dir="testuno/source"> 107 <exclude name="**/*.java" /> 108 </fileset> 109 </copy> 110 </target> 111 112 <target name="testuno.compile" depends="testcommon.compile, testuno.init"> |
113 <javac destdir="testuno/bin" debug="on" source="1.6" encoding="utf-8" includeantruntime="false"> | 113 <javac destdir="testuno/bin" debug="on" source="1.6" target="1.6" encoding="utf-8" includeantruntime="false"> |
114 <src path="testuno/source"/> 115 <classpath> 116 <fileset dir="lib"> 117 <include name="*.jar" /> 118 </fileset> 119 <pathelement location="testcommon/bin" /> 120 <path refid="uno.classpath"/> 121 </classpath> --- 43 unchanged lines hidden --- | 114 <src path="testuno/source"/> 115 <classpath> 116 <fileset dir="lib"> 117 <include name="*.jar" /> 118 </fileset> 119 <pathelement location="testcommon/bin" /> 120 <path refid="uno.classpath"/> 121 </classpath> --- 43 unchanged lines hidden --- |