Skip to content

Commit

Permalink
Merge pull request #34 from nehbehl/patch-22
Browse files Browse the repository at this point in the history
Update pom.xml
  • Loading branch information
SudKul authored Nov 13, 2024
2 parents a2283d1 + 9439381 commit 5dce4a7
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions udacity-jwdnd-c1-l4-final-review-solution-master/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>2.3.0.RELEASE</version>
<version>3.3.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.udacity.jwdnd.c1</groupId>
Expand All @@ -15,10 +15,18 @@
<description>Demo project for Spring Boot</description>

<properties>
<java.version>14</java.version>
<java.version>21</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
Expand All @@ -34,9 +42,18 @@
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.2</version>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
Expand Down

0 comments on commit 5dce4a7

Please sign in to comment.