aoo-ant.xml (cede1e5b) aoo-ant.xml (31eff9ff)
1<?xml version="1.0" encoding="UTF-8"?>
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

--- 26 unchanged lines hidden (view full) ---

35 <property file="${aoo-ant.basedir}/../inc/minor.mk"/>
36
37 <property name="build.base.dir" location="${WORKDIR}/Ant/${ant.project.name}"/>
38 <property name="main.src.dir" location="src/main/java"/>
39 <property name="main.build.dir" location="${build.base.dir}/main"/>
40 <property name="test.src.dir" location="src/test/java"/>
41 <property name="test.build.dir" location="${build.base.dir}/test"/>
42 <property name="test.reports.dir" location="${build.base.dir}/test-reports"/>
1<?xml version="1.0" encoding="UTF-8"?>
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

--- 26 unchanged lines hidden (view full) ---

35 <property file="${aoo-ant.basedir}/../inc/minor.mk"/>
36
37 <property name="build.base.dir" location="${WORKDIR}/Ant/${ant.project.name}"/>
38 <property name="main.src.dir" location="src/main/java"/>
39 <property name="main.build.dir" location="${build.base.dir}/main"/>
40 <property name="test.src.dir" location="src/test/java"/>
41 <property name="test.build.dir" location="${build.base.dir}/test"/>
42 <property name="test.reports.dir" location="${build.base.dir}/test-reports"/>
43 <property name="java.baseline.version" value="1.7"/>
43 <property name="jar.dir" location="${WORKDIR}/Ant"/>
44
45 <property name="main.debug" value="true"/>
46 <property name="main.deprecation" value="false"/>
47 <property name="test.debug" value="true"/>
48 <property name="test.deprecation" value="false"/>
49
50 <import file="${aoo-ant.basedir}/externals.xml"/>

--- 55 unchanged lines hidden (view full) ---

106 </target>
107
108 <extension-point name="pre-compile" depends="prepare,res"/>
109
110 <target name="compile" depends="pre-compile">
111 <mkdir dir="${main.build.dir}"/>
112 <javac srcdir="${main.src.dir}"
113 destdir="${main.build.dir}"
44 <property name="jar.dir" location="${WORKDIR}/Ant"/>
45
46 <property name="main.debug" value="true"/>
47 <property name="main.deprecation" value="false"/>
48 <property name="test.debug" value="true"/>
49 <property name="test.deprecation" value="false"/>
50
51 <import file="${aoo-ant.basedir}/externals.xml"/>

--- 55 unchanged lines hidden (view full) ---

107 </target>
108
109 <extension-point name="pre-compile" depends="prepare,res"/>
110
111 <target name="compile" depends="pre-compile">
112 <mkdir dir="${main.build.dir}"/>
113 <javac srcdir="${main.src.dir}"
114 destdir="${main.build.dir}"
115 source="${java.baseline.version}"
116 target="${java.baseline.version}"
114 debug="${main.debug}"
115 debuglevel="lines,vars,source"
116 deprecation="${main.deprecation}"
117 classpathref="main.classpath"
118 includeantruntime="false"/>
119 </target>
120
121 <target name="test-check">

--- 17 unchanged lines hidden (view full) ---

139 </or>
140 </condition>
141 </target>
142
143 <target name="test-compile" depends="compile,idl,test-check">
144 <mkdir dir="${test.build.dir}" unless:set="test.skip"/>
145 <javac srcdir="${test.src.dir}"
146 destdir="${test.build.dir}"
117 debug="${main.debug}"
118 debuglevel="lines,vars,source"
119 deprecation="${main.deprecation}"
120 classpathref="main.classpath"
121 includeantruntime="false"/>
122 </target>
123
124 <target name="test-check">

--- 17 unchanged lines hidden (view full) ---

142 </or>
143 </condition>
144 </target>
145
146 <target name="test-compile" depends="compile,idl,test-check">
147 <mkdir dir="${test.build.dir}" unless:set="test.skip"/>
148 <javac srcdir="${test.src.dir}"
149 destdir="${test.build.dir}"
150 source="${java.baseline.version}"
151 target="${java.baseline.version}"
147 debug="${test.debug}"
148 debuglevel="lines,vars,source"
149 deprecation="${test.deprecation}"
150 classpathref="internal.test.classpath"
151 includeantruntime="false"
152 unless:set="test.skip"/>
153 </target>
154

--- 49 unchanged lines hidden ---
152 debug="${test.debug}"
153 debuglevel="lines,vars,source"
154 deprecation="${test.deprecation}"
155 classpathref="internal.test.classpath"
156 includeantruntime="false"
157 unless:set="test.skip"/>
158 </target>
159

--- 49 unchanged lines hidden ---