Skip to content

Commit

Permalink
Merge pull request #23 from Oscorp-HQ/fixes/resolve-build-errors
Browse files Browse the repository at this point in the history
Updated maven version and lombok dependencies version
  • Loading branch information
Hemanthr1 authored Nov 11, 2024
2 parents 6367e1a + 07e5ee8 commit 7eb1247
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<version>3.3.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.quashbugs</groupId>
Expand Down Expand Up @@ -109,8 +109,14 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.projectlombok</groupId>-->
<!-- <artifactId>lombok</artifactId>-->
<!-- <optional>true</optional>-->
<!-- </dependency>-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down Expand Up @@ -186,6 +192,11 @@
<artifactId>razorpay-java</artifactId>
<version>1.4.4</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- AWS SDK for Java -->
<dependency>
<groupId>software.amazon.awssdk</groupId>
Expand Down Expand Up @@ -234,6 +245,20 @@
<artifactId>sonar-maven-plugin</artifactId>
<version>3.4.0.905</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>

</plugins>

Expand Down

0 comments on commit 7eb1247

Please sign in to comment.