diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-12-04 05:03:36 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-12-04 07:14:14 +0100 |
commit | ea442e676c9a44aefef7e2c22ac546ffd32f87c1 (patch) | |
tree | d5cac321d32fd5add533da8f7616c3434a1edcf3 /buildScripts/maven.ant.xml | |
parent | 59bf969500d997382fdc0c83d21ed4bf2d6a401c (diff) | |
download | lombok-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/maven.ant.xml')
-rw-r--r-- | buildScripts/maven.ant.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildScripts/maven.ant.xml b/buildScripts/maven.ant.xml index dcba2ccb..57bb6b99 100644 --- a/buildScripts/maven.ant.xml +++ b/buildScripts/maven.ant.xml @@ -59,7 +59,7 @@ This buildfile is part of projectlombok.org. It makes maven-compatible repositor </sequential> </macrodef> - <target name="maven" depends="version, dist, javadoc.build" description="Creates a maven repo for the current release into a build dir. The intent is for you to put that on a server someplace. Will invoke your local mvn installation."> + <target name="maven" depends="version, dist, javadoc.build, -setup.build" description="Creates a maven repo for the current release into a build dir. The intent is for you to put that on a server someplace. Will invoke your local mvn installation."> <mkdir dir="build" /> <mkdir dir="dist" /> |