aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2020-12-04 05:01:58 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2020-12-04 05:01:58 +0100
commit59bf969500d997382fdc0c83d21ed4bf2d6a401c (patch)
treedda9504cb0bb106f4d1ea75327443665f615857f
parentb586c543cdf9338e112ab8a6668262ab350742e4 (diff)
downloadlombok-59bf969500d997382fdc0c83d21ed4bf2d6a401c.tar.gz
lombok-59bf969500d997382fdc0c83d21ed4bf2d6a401c.tar.bz2
lombok-59bf969500d997382fdc0c83d21ed4bf2d6a401c.zip
[build] bugfix for mapstructBinding build
-rw-r--r--buildScripts/compile.ant.xml6
-rw-r--r--buildScripts/mapstructBinding.ant.xml2
2 files changed, 2 insertions, 6 deletions
diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml
index 8627399e..047558a5 100644
--- a/buildScripts/compile.ant.xml
+++ b/buildScripts/compile.ant.xml
@@ -220,13 +220,9 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor,isolating</echo>
<!-- compiles the bit of API from mapstruct that lombok compiles against. -->
<target name="mapstruct.compile">
<mkdir dir="build/mapstruct" />
- <ivy:compile destdir="build/mapstruct" release="9">
+ <ivy:compile destdir="build/mapstruct" release="8">
<src path="src/j9stubs" />
</ivy:compile>
- <mkdir dir="build/lombok/secondaryLoading.SCL.lombok/org/mapstruct/ap/spi" />
- <move
- file="build/mapstruct/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.class"
- tofile="build/lombok/secondaryLoading.SCL.lombok/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.SCL.lombok" />
</target>
<target name="-deps.unpack" depends="deps">
diff --git a/buildScripts/mapstructBinding.ant.xml b/buildScripts/mapstructBinding.ant.xml
index 3cae5598..a78c5351 100644
--- a/buildScripts/mapstructBinding.ant.xml
+++ b/buildScripts/mapstructBinding.ant.xml
@@ -73,7 +73,7 @@ exists as a separate dependency solely because it is itself dependent on both lo
<jar destfile="dist/lombok-mapstruct-binding-${mapstruct-binding.version}-javadoc.jar" basedir="build/mapstruct-binding/api" includes="**" />
</target>
- <target name="-mapstructBinding.jar" depends="dist,-mapstructBinding.prepare">
+ <target name="-mapstructBinding.jar" depends="dist, -mapstructBinding.prepare">
<mkdir dir="build/mapstruct-binding/classes" />
<echo file="build/mapstruct-binding/classes/META-INF/services/org.mapstruct.ap.spi.AstModifyingAnnotationProcessor">lombok.mapstruct.NotifierHider$AstModificationNotifier</echo>