Skip to content

Commit

Permalink
Lombok issue fix with Java 21 (#245)
Browse files Browse the repository at this point in the history
* lombok issue fix

* Added comment - lombok issue fix
  • Loading branch information
shobhakamath authored Dec 21, 2023
1 parent a6159bf commit 453bfe0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
<chaos-monkey-spring-boot.version>2.3.10</chaos-monkey-spring-boot.version>
<jolokia-core.version>1.7.1</jolokia-core.version>

<!-- Workaround for resolving the issue while using the provided lombok dependency in upgraded Java version.
Should be removed while future upgrading-->
<lombok.version>1.18.30</lombok.version>

<docker.image.prefix>springcommunity</docker.image.prefix>
<docker.image.exposed.port>9090</docker.image.exposed.port>
<docker.image.dockerfile.dir>${basedir}</docker.image.dockerfile.dir>
Expand All @@ -58,6 +62,11 @@
<artifactId>jolokia-core</artifactId>
<version>${jolokia-core.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 453bfe0

Please sign in to comment.