Skip to content

Commit

Permalink
fix: fix jdk21 lombok compile error
Browse files Browse the repository at this point in the history
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'
  • Loading branch information
ran222 authored Feb 20, 2024
1 parent c00fcf8 commit 6961106
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>

Expand Down

0 comments on commit 6961106

Please sign in to comment.