aboutsummaryrefslogtreecommitdiff
path: root/buildScripts/build-support.ant.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2020-12-04 05:03:36 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2020-12-04 07:14:14 +0100
commitea442e676c9a44aefef7e2c22ac546ffd32f87c1 (patch)
treed5cac321d32fd5add533da8f7616c3434a1edcf3 /buildScripts/build-support.ant.xml
parent59bf969500d997382fdc0c83d21ed4bf2d6a401c (diff)
downloadlombok-ea442e676c9a44aefef7e2c22ac546ffd32f87c1.tar.gz
lombok-ea442e676c9a44aefef7e2c22ac546ffd32f87c1.tar.bz2
lombok-ea442e676c9a44aefef7e2c22ac546ffd32f87c1.zip
[build] the build can now autoclean
autocleaning means that the build system detects that the usual incremental mode, where the build artefacts are not deleted and instead used to skip steps already performed, is not an option due to changes in the build script itself or a change in deps not detectable. It works by having a version number which can be incremented, and a system that checks for mismatches and forces a clean.
Diffstat (limited to 'buildScripts/build-support.ant.xml')
-rw-r--r--buildScripts/build-support.ant.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildScripts/build-support.ant.xml b/buildScripts/build-support.ant.xml
index 107f5f47..d6439cb0 100644
--- a/buildScripts/build-support.ant.xml
+++ b/buildScripts/build-support.ant.xml
@@ -50,7 +50,7 @@ None of these tasks are normally needed, unless modifying how the build works, s
<input addproperty="target.jdk">You need to specify the JDK9+ jdk whose jdk.compiler and java.compiler modules are to be converted. Run ant with -Dtarget.jdk=/full/path/here to automate this, or type the path in now (for example: /Library/JavaVirtualMachines/jdk-14.jdk/Contents/Home):</input>
</target>
- <target name="make.javac-patch-jar" depends="-ask.target-jdk" description="to test javac13 on JDK14, for example, you need a jar (not a jmod), to use with --patch-modules. This task makes those.">
+ <target name="make.javac-patch-jar" depends="-ask.target-jdk, -setup.build" description="to test javac13 on JDK14, for example, you need a jar (not a jmod), to use with --patch-modules. This task makes those.">
<exec executable="${target.jdk}/bin/java${executable.suffix}" outputproperty="target.javac.version.full" errorproperty="target.javac.version.err">
<arg value="--version" />
</exec>