From 610833f025a69589cfa20c0bcac8d096d81677c3 Mon Sep 17 00:00:00 2001 From: Fabrice Ducos Date: Tue, 14 Jun 2022 22:29:41 +0200 Subject: [PATCH] build.xml: includeantruntime="false" appended to javac tasks in order to ensure repeatable builds by ant --- build.xml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index 8fa8b0f9..ad6de20d 100644 --- a/build.xml +++ b/build.xml @@ -93,17 +93,23 @@ classpath="lib/bcel-5.2.jar" debug="on" srcdir="build/jse/src" - excludes="**/script/*,**/Lua2Java*,**/server/*,lua*"/> + excludes="**/script/*,**/Lua2Java*,**/server/*,lua*" + includeantruntime="false" + /> + includes="**/script/*,**/Lua2Java*,**/server/*" + includeantruntime="false" + /> + includes="lua*" + includeantruntime="false" + />