Skip to content

Commit

Permalink
Move lombok to beginning of classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
jacodg committed Jan 12, 2024
1 parent a13e09b commit b92d419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -574,9 +574,9 @@
<property name="javac.release" value="11"/>
<javac srcdir="${projects.dir}/${project.dir}/${java.dir}" destdir="${webapp.dir}/WEB-INF/classes" release="${javac.release}" includeantruntime="false" if:set="java.dir.available" unless:true="${maven}">
<classpath>
<fileset dir="download"><include name="${lombok.jar}"/></fileset>
<fileset dir="${webapp.dir}/WEB-INF/lib"><include name="*.jar"/></fileset>
<fileset dir="${tomcat.dir}/lib"><include name="*.jar"/></fileset>
<fileset dir="download"><include name="${lombok.jar}"/></fileset>
</classpath>
<compilerarg line="-processor lombok.launch.AnnotationProcessorHider$AnnotationProcessor"/><!-- prevent warning in java 21: ... future release of javac may disable annotation processing ... -->
</javac>
Expand Down

0 comments on commit b92d419

Please sign in to comment.