From 88918e9eb3e65645fddd0f5f850795ce3fec25df Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 2 Jul 2020 23:34:07 +0200 Subject: [build] fixed a build issue (on 'ant dist') on windows. apparently on windows symlinking requires admin rights because ????? This can be fixed with an explicit update to group policies, which I can't assume anybody working on lombok is going to actually do. /bin/ln in msysgit just copies (interesting choice). I could write a mechanism that tries /bin/ln and if not there, try instead, either in the build scripts or in ivyplusplus, but that's way too much effort to avoid a 2MB copy. So, for now, we just copy... if more symlinking is to be done later, we'll revisit, though. copying is such a silly waste of time, slowing down the build for no reason. --- buildScripts/maven.ant.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildScripts/maven.ant.xml') diff --git a/buildScripts/maven.ant.xml b/buildScripts/maven.ant.xml index 329eacec..dcba2ccb 100644 --- a/buildScripts/maven.ant.xml +++ b/buildScripts/maven.ant.xml @@ -37,7 +37,7 @@ This buildfile is part of projectlombok.org. It makes maven-compatible repositor - + @@ -48,7 +48,7 @@ This buildfile is part of projectlombok.org. It makes maven-compatible repositor - + -- cgit