Skip to content

Commit db425bb

Browse files
authored
Merge pull request eugenp#13819 from eugenp/move-module-boot3
upgrade to boot 3, fix startup error
2 parents 679bf08 + bdc1cba commit db425bb

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

spring-reactive-modules/spring-reactive-exceptions/pom.xml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
<name>spring-reactive-exceptions</name>
99
<description>A module to hold demo examples related to exception in Spring Reactive</description>
1010

11-
<parent>
12-
<groupId>com.baeldung.spring.reactive</groupId>
13-
<artifactId>spring-reactive-modules</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
11+
<parent>
12+
<groupId>com.baeldung</groupId>
13+
<artifactId>parent-boot-3</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<relativePath>../../parent-boot-3</relativePath>
1516
</parent>
1617

1718
<dependencies>
@@ -23,7 +24,6 @@
2324
<dependency>
2425
<groupId>org.projectlombok</groupId>
2526
<artifactId>lombok</artifactId>
26-
<optional>true</optional>
2727
</dependency>
2828
<dependency>
2929
<groupId>org.springframework.boot</groupId>
@@ -42,14 +42,6 @@
4242
<plugin>
4343
<groupId>org.springframework.boot</groupId>
4444
<artifactId>spring-boot-maven-plugin</artifactId>
45-
<configuration>
46-
<excludes>
47-
<exclude>
48-
<groupId>org.projectlombok</groupId>
49-
<artifactId>lombok</artifactId>
50-
</exclude>
51-
</excludes>
52-
</configuration>
5345
</plugin>
5446
</plugins>
5547
</build>

spring-reactive-modules/spring-reactive-exceptions/src/main/resources/application.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ spring:
22
codec:
33
max-in-memory-size: 500KB
44

5+
server:
6+
port: 8080
57
host: http://localhost:${server.port}

0 commit comments

Comments
 (0)