This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-admin.git


The following commit(s) were added to refs/heads/develop by this push:
     new fbc23f43 fix: fix jdk21 lombok compile error (#1267)
fbc23f43 is described below

commit fbc23f4370105660bb9558d688fb18fe18a44af4
Author: ran <[email protected]>
AuthorDate: Tue Feb 20 14:13:28 2024 +0800

    fix: fix jdk21 lombok compile error (#1267)
    
    fix lombok error:
    java.lang.NoSuchFieldError: Class com.sun.tools.javac.tree.JCTree$JCImport 
does not have member field 'com.sun.tools.javac.tree.JCTree qualid'
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3c93d97a..00b97244 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,6 +53,7 @@
         <dubbo-mock-version>3.0.0</dubbo-mock-version>
         <mybatis-plus-boot-version>3.4.2</mybatis-plus-boot-version>
         <curator-test-veriosn>2.12.0</curator-test-veriosn>
+        <lombok.version>1.18.30</lombok.version>
 
         
<maven-checkstyle-plugin-version>3.0.0</maven-checkstyle-plugin-version>
         <spring-boot-version>2.3.12.RELEASE</spring-boot-version>
@@ -131,6 +132,11 @@
                 <artifactId>curator-test</artifactId>
                 <version>${curator-test-veriosn}</version>
             </dependency>
+            <dependency>
+                <groupId>org.projectlombok</groupId>
+                <artifactId>lombok</artifactId>
+                <version>${lombok.version}</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 

Reply via email to