Skip to content

Commit c496a83

Browse files
authored
Merge pull request #50 from nehbehl/patch-38
Update pom.xml
2 parents 913f6c9 + 728e86f commit c496a83

File tree

1 file changed

+21
-4
lines changed
  • udacity-jwdnd-c1-l2-server-config-master

1 file changed

+21
-4
lines changed

udacity-jwdnd-c1-l2-server-config-master/pom.xml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.3.0.RELEASE</version>
8+
<version>3.3.5</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.udacity.jwdnd.c1.2</groupId>
@@ -15,10 +15,18 @@
1515
<description>Demo project for Spring Boot</description>
1616

1717
<properties>
18-
<java.version>14</java.version>
18+
<java.version>21</java.version>
1919
</properties>
2020

2121
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-data-jpa</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.springframework.boot</groupId>
28+
<artifactId>spring-boot-starter-mail</artifactId>
29+
</dependency>
2230
<dependency>
2331
<groupId>org.springframework.boot</groupId>
2432
<artifactId>spring-boot-starter-security</artifactId>
@@ -34,9 +42,18 @@
3442
<dependency>
3543
<groupId>org.mybatis.spring.boot</groupId>
3644
<artifactId>mybatis-spring-boot-starter</artifactId>
37-
<version>2.1.2</version>
45+
<version>3.0.3</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.postgresql</groupId>
49+
<artifactId>postgresql</artifactId>
50+
<scope>runtime</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.projectlombok</groupId>
54+
<artifactId>lombok</artifactId>
55+
<optional>true</optional>
3856
</dependency>
39-
4057
<dependency>
4158
<groupId>org.springframework.boot</groupId>
4259
<artifactId>spring-boot-devtools</artifactId>

0 commit comments

Comments
 (0)