From 2b86587ddbc9e4b63598a9e5d1a3901050191de9 Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Tue, 18 Jan 2022 22:02:03 -0800 Subject: [PATCH] comments --- build.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index dd3c736f74..c5f0859dd3 100644 --- a/build.xml +++ b/build.xml @@ -19,7 +19,7 @@ <property name="Implementation-Version" value="${timestamp}"/> <property name="Implementation-Vendor" value="Naval Postgraduate School (NPS)"/> - <!-- ensure backwards compatibility to specified version of Java --> + <!-- ensure backwards compatibility of produced jar to specified version of Java, though project itself is JDK 17+ --> <property name="java.source" value="1.8"/> <property name="java.target" value="1.8"/> @@ -42,6 +42,7 @@ <!-- build.impl <javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}"> --> <target name="all" description="Build and test the whole project, create distribution jar files."> + <!-- TODO current configuration is Java only; Python is next --> <echo message="timestamp ${timestamp}"/> <fail message="Please build using Ant 1.10.11 or higher."> <condition> -- GitLab