Skip to content

Commit d0cf664

Browse files
committed
Update lesson-demo
1 parent 5a52081 commit d0cf664

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

lesson-demo/pom.xml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,20 @@
1818

1919
<dependencies>
2020
<dependency>
21-
<groupId>com.bobocode</groupId>
22-
<artifactId>java-web-course-util</artifactId>
23-
<version>1.0-SNAPSHOT</version>
21+
<groupId>jakarta.servlet</groupId>
22+
<artifactId>jakarta.servlet-api</artifactId>
23+
<version>5.0.0</version>
24+
<scope>provided</scope>
2425
</dependency>
2526
<dependency>
26-
<groupId>org.springframework.boot</groupId>
27-
<artifactId>spring-boot-starter-web</artifactId>
28-
<version>2.5.5</version>
27+
<groupId>org.springframework</groupId>
28+
<artifactId>spring-webmvc</artifactId>
29+
<version>5.3.10</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.fasterxml.jackson.core</groupId>
33+
<artifactId>jackson-databind</artifactId>
34+
<version>2.12.5</version>
2935
</dependency>
3036
</dependencies>
3137

lesson-demo/src/main/java/com/bobocode/demo/DemoWebApp.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package com.bobocode.demo;
22

3+
import lombok.SneakyThrows;
4+
35
public class DemoWebApp {
4-
6+
@SneakyThrows
57
public static void main(String[] args) {
68

79
}

0 commit comments

Comments
 (0)