comparison build.xml @ 747:342fc48c95cd

Extend makefile with targets: jre17jars and testsjar
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 08 Mar 2023 19:59:10 +0100 (2023-03-08)
parents aeb268156580
children a80c21fe7bb2
comparison
equal deleted inserted replaced
746:fa425d36a0b1 747:342fc48c95cd
34 <property name="nl-cwi-client-package" value="nl/cwi/monetdb/client" /> 34 <property name="nl-cwi-client-package" value="nl/cwi/monetdb/client" />
35 35
36 <property file="build.local.properties" /> 36 <property file="build.local.properties" />
37 <property file="build.properties" /> 37 <property file="build.properties" />
38 38
39 <!-- 39 <!--
40
41 Cross-compile for JVM 1.5 ("Java 5"). This allows the driver to work with older java installations.
42 see also https://blogs.oracle.com/darcy/entry/bootclasspath_older_source for details on the error message w.r.t rt.jar
43 to get around this issue, the -Xlint:-options compiler option has also been addded.
44 2013-04-17, hannes@cwi.nl
45
46 Update: cross-compile for JVM 1.7 since 1.5 and 1.6 are both long
47 since EOL.
48 2015-07-16, sjoerd@acm.org
49
50 Update: cross-compile for JVM 8 (=1.8), profile compact2 40 Update: cross-compile for JVM 8 (=1.8), profile compact2
51 2020-02-12, martin.van.dinther@monetdbsolutions.com 41 2020-02-12, martin.van.dinther@monetdbsolutions.com
52
53 --> 42 -->
43
54 <property name="jvm.version" value="8" /> 44 <property name="jvm.version" value="8" />
55 <property name="jre.version" value="jre8" /> 45 <property name="jre.version" value="jre8" />
56 <property name="javac.flags" value="-source 8" /> 46 <property name="javac.flags" value="-source 8" />
57 <property name="javac.flags" value="-target 8" /> 47 <property name="javac.flags" value="-target 8" />
58 <property name="javac.flags" value="-profile compact2" /> 48 <property name="javac.flags" value="-profile compact2" />