diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-12-04 05:01:58 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-12-04 05:01:58 +0100 |
commit | 59bf969500d997382fdc0c83d21ed4bf2d6a401c (patch) | |
tree | dda9504cb0bb106f4d1ea75327443665f615857f | |
parent | b586c543cdf9338e112ab8a6668262ab350742e4 (diff) | |
download | lombok-59bf969500d997382fdc0c83d21ed4bf2d6a401c.tar.gz lombok-59bf969500d997382fdc0c83d21ed4bf2d6a401c.tar.bz2 lombok-59bf969500d997382fdc0c83d21ed4bf2d6a401c.zip |
[build] bugfix for mapstructBinding build
-rw-r--r-- | buildScripts/compile.ant.xml | 6 | ||||
-rw-r--r-- | buildScripts/mapstructBinding.ant.xml | 2 |
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> |