我正在使用另一个第三方Java Maven模块的Java Maven项目。
该模块利用了Lombok。
我正在使用mvn clean install
从源代码编译第三方Maven模块。
当我从Java项目中的第3方maven模块调用一个类时,出现以下错误:
Caused by: java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at io.quarkus.arc.Reflections.invokeMethod(Reflections.java:95)
... 86 more
Caused by: java.lang.Error: Unresolved compilation problem:
The method builder() is undefined for the type ThirdPartyClass
我尝试将以下内容添加到两个Maven项目中,但没有任何区别:
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>1.18.6.0</version>
<executions>
<execution>
<id>delombok</id>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
<addOutputDirectory>false</addOutputDirectory>
<formatPreferences>
<javaLangAsFQN>skip</javaLangAsFQN>
</formatPreferences>
<verbose>false</verbose>
</configuration>
</execution>
<!-- This is for delomboking also your tests sources. <execution> <id>test-delombok</id>
<phase>generate-test-sources</phase> <goals> <goal>testDelombok</goal> </goals>
<configuration> <verbose>false</verbose> </configuration> </execution> -->
</executions>
</plugin>
我没有使用IDE来编译和运行Java项目-只是使用终端。
有人知道如何解决此错误吗?