From 734b91ea97b825a8c323dabeba43ab45f5a54669 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 4 Dec 2020 07:16:19 +0100 Subject: [build] build is now far less unreliable Tiered compilation used to dump every stage into the same build dir, and included that dir on the classpath, which means any ordering issues introduced into a build aren't going to result in a failed build, thus breaking the build for everybody except those who already had a working lombok in their build dir before starting a build. The opposite of bootstrapping, in other words. Fixed by having each stage build into its own private stage phase. --- buildScripts/setup.ant.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildScripts/setup.ant.xml') diff --git a/buildScripts/setup.ant.xml b/buildScripts/setup.ant.xml index 7875f27d..e71f8143 100644 --- a/buildScripts/setup.ant.xml +++ b/buildScripts/setup.ant.xml @@ -25,7 +25,7 @@ This buildfile is part of projectlombok.org. It sets up the build itself. - + -- cgit