Merge pull request #13819 from eugenp/move-module-boot3
upgrade to boot 3, fix startup error
This commit is contained in:
commit
7f009957fe
|
@ -8,10 +8,11 @@
|
||||||
<name>spring-reactive-exceptions</name>
|
<name>spring-reactive-exceptions</name>
|
||||||
<description>A module to hold demo examples related to exception in Spring Reactive</description>
|
<description>A module to hold demo examples related to exception in Spring Reactive</description>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung.spring.reactive</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>spring-reactive-modules</artifactId>
|
<artifactId>parent-boot-3</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<relativePath>../../parent-boot-3</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -23,7 +24,6 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
<optional>true</optional>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -42,14 +42,6 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<excludes>
|
|
||||||
<exclude>
|
|
||||||
<groupId>org.projectlombok</groupId>
|
|
||||||
<artifactId>lombok</artifactId>
|
|
||||||
</exclude>
|
|
||||||
</excludes>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
|
@ -2,4 +2,6 @@ spring:
|
||||||
codec:
|
codec:
|
||||||
max-in-memory-size: 500KB
|
max-in-memory-size: 500KB
|
||||||
|
|
||||||
|
server:
|
||||||
|
port: 8080
|
||||||
host: http://localhost:${server.port}
|
host: http://localhost:${server.port}
|
||||||
|
|
Loading…
Reference in New Issue