Skip to content

Commit

Permalink
build(bindings/java): fix lombok process (#5297)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisonkun authored Nov 7, 2024
1 parent a594365 commit 0f7497e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion bindings/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,13 @@
<assertj.version>3.23.1</assertj.version>
<commons-io.version>2.16.1</commons-io.version>
<dotenv.version>2.3.2</dotenv.version>
<lombok.version>1.18.30</lombok.version>
<lombok.version>1.18.34</lombok.version>
<slf4j.version>2.0.7</slf4j.version>
<httpclient.version>5.2</httpclient.version>

<!-- plugins dependencies -->
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
<os-maven-plugin.version>1.7.0</os-maven-plugin.version>
<palantir-java-format.version>2.36.0</palantir-java-format.version>
Expand Down Expand Up @@ -223,6 +224,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 0f7497e

Please sign in to comment.