79544403

Date: 2025-03-30 09:55:05
Score: 1
Natty:
Report link

I had faced the same issue with @Builder annotation.
Then I put this in my pom.xml, the issue got resolved.

<plugins>
    <plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
            <image>
            <builder>paketobuildpacks/builder-jammy-base:latest</builder>
            </image>
            <excludes>
            <exclude>
                    <groupId>org.project-lombok</groupId>
                    <artifactId>lombok</artifactId>
            </exclude>
            </excludes>
    </configuration>
    </plugin>
</plugins>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Builder
  • Low reputation (1):
Posted by: realarnab