diff options
Diffstat (limited to 'buildScripts')
-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> |