JAVA-31000 : Upgrade Spring Boot Runtime and Spring Boot Runtime2 to Spring Boot 3. (#16138)

* JAVA-31000 : Upgrade Spring Boot Runtime and Spring Boot Runtime2 to Spring Boot 3

* JAVA-31000 :- Uncomment in Parent module POM.

* Remove unnecessary imports
This commit is contained in:
Amit Pandey
2024-03-17 17:34:56 +05:30
committed by GitHub
parent 90b019d0bf
commit aaeb72e89d
13 changed files with 41 additions and 38 deletions
@@ -69,8 +69,8 @@
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
</dependency>
<dependency>
<groupId>org.subethamail</groupId>
@@ -79,14 +79,16 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.3.1</version>
</dependency>
</dependencies>
<properties>
<subethasmtp.version>3.1.7</subethasmtp.version>
<springcloud.version>3.1.3</springcloud.version>
<start-class>com.baeldung.shutdown.Application</start-class>
</properties>
</project>