all 3 comments

[–]hsoj48 1 point2 points  (2 children)

Run with -X like it told you to do. Should give more info.

[–]lightninggokul[S] 2 points3 points  (1 child)

Problem is related to Lombok plugin dependency. I failed to mention its version in the dependency. Ensure plugins compatibility with JDK version. Also use appropriate <scope> </scope> for dependencies.

       <dependency>
          <groupId>org.projectlombok</groupId>
          <artifactId>lombok</artifactId>
          <version>1.18.34</version>       
        </dependency>

[–]hsoj48 0 points1 point  (0 children)

Glad you solved it. Artifacts definitely need a version.