Last change
on this file since 35634 was 35634, checked in by davidb, 20 months 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
|
Line | |
---|
1 | <?xml version="1.0"?>
|
---|
2 | <project name="rk-compilation" default="compile">
|
---|
3 |
|
---|
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 |
|
---|
16 | <target name="compile">
|
---|
17 | <ant dir="shared/core/ant-tasks/greenstone" inheritAll="true">
|
---|
18 | <property name="crypt.jar" value="${basedir}/shared/core/lib/crypt.jar"/>
|
---|
19 | </ant>
|
---|
20 | <ant dir="shared/core/ant-installer" inheritAll="true">
|
---|
21 | <property name="antlib" value="${ant.home}/lib"/>
|
---|
22 | </ant>
|
---|
23 | </target>
|
---|
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>
|
---|
32 |
|
---|
33 | </project>
|
---|
34 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.