JAVA-27542 Upgrade spring protobuf module to spring boot 3 (#16059)

This commit is contained in:
sam-gardner 2024-03-15 15:39:33 +00:00 committed by GitHub
parent 1ac881cfec
commit bc84fc35a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -9,9 +9,9 @@
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<artifactId>parent-boot-3</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-2</relativePath>
<relativePath>../parent-boot-3</relativePath>
</parent>
<dependencies>
@ -37,12 +37,14 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
</dependencies>
<properties>
<protobuf-java.version>3.1.0</protobuf-java.version>
<protobuf-java.version>3.25.3</protobuf-java.version>
<protobuf-java-format.version>1.4</protobuf-java-format.version>
<httpclient.version>4.5.14</httpclient.version>
<start-class>com.baeldung.protobuf.Application</start-class>
</properties>

View File

@ -11,7 +11,7 @@ import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.boot.test.web.server.LocalServerPort;
import org.springframework.http.ResponseEntity;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;