source: main/trunk/release-kits/build.xml@ 35634

Last change on this file since 35634 was 35634, checked in by davidb, 3 years ago

To support using a newer JDK (such as OpenJDK11) with the Release Kit code base to generate an installer that operates with the bundled JDK8 then we need to be more careful over the .class files that are compiled up. This is what this set of introduced mods does

File size: 1.1 KB
RevLine 
[18970]1<?xml version="1.0"?>
2<project name="rk-compilation" default="compile">
3
[35634]4 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpath="${basedir}/shared/core/lib/AntelopeTasks_3.4.2.jar"/>
5
6 <property environment="env"/>
7
8 <if>
9 <bool><isset property="env.JAVACFLAGS"/></bool>
10 <property name="compile.javac.flags" value="${env.JAVACFLAGS}"/>
11 <else>
12 <property name="compile.javac.flags" value=""/>
13 </else>
14 </if>
15
[18970]16 <target name="compile">
[35634]17 <ant dir="shared/core/ant-tasks/greenstone" inheritAll="true">
[21523]18 <property name="crypt.jar" value="${basedir}/shared/core/lib/crypt.jar"/>
[18970]19 </ant>
[35634]20 <ant dir="shared/core/ant-installer" inheritAll="true">
[21384]21 <property name="antlib" value="${ant.home}/lib"/>
22 </ant>
[18970]23 </target>
[21593]24 <target name="clean">
25 <ant dir="shared/core/ant-tasks/greenstone" inheritAll="false" target="clean">
26 <property name="crypt.jar" value="${basedir}/shared/core/lib/crypt.jar"/>
27 </ant>
28 <ant dir="shared/core/ant-installer" inheritAll="false" target="clean">
29 <property name="antlib" value="${ant.home}/lib"/>
30 </ant>
31 </target>
[18970]32
33</project>
34
Note: See TracBrowser for help on using the repository browser.