diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-12-04 07:16:19 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-12-04 07:16:19 +0100 |
commit | 734b91ea97b825a8c323dabeba43ab45f5a54669 (patch) | |
tree | 620513df473de9504866f9d804cc3ce75ec95a8e /buildScripts/setup.ant.xml | |
parent | ea442e676c9a44aefef7e2c22ac546ffd32f87c1 (diff) | |
download | lombok-734b91ea97b825a8c323dabeba43ab45f5a54669.tar.gz lombok-734b91ea97b825a8c323dabeba43ab45f5a54669.tar.bz2 lombok-734b91ea97b825a8c323dabeba43ab45f5a54669.zip |
[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.
Diffstat (limited to 'buildScripts/setup.ant.xml')
-rw-r--r-- | buildScripts/setup.ant.xml | 2 |
1 files changed, 1 insertions, 1 deletions
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. </description> <!-- increment this number to force a clean of the 'build' dir --> - <property name="build.version" value="1" /> + <property name="build.version" value="2020-12-04_001" /> <property name="pattern.jdk11plus" value="^(\d\d\d+|1[1-9]|[2-9]\d)(\..*)?$" /> <property name="ivy.retrieve.pattern" value="lib/[conf]/[organisation]-[artifact].[ext]" /> |