Skip to content

Commit

Permalink
Update remaining projects to spring boot 3.2 (#3446)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKunz authored Nov 29, 2023
1 parent c5a8373 commit a4cfea1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.1.5</version> <!-- update IT in case of major upgrade -->
<version>3.2.0</version> <!-- update IT in case of major upgrade -->
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.1.5</version> <!-- must be 3.X to correspond to spring 6 -->
<version>3.2.0</version> <!-- must be 3.X to correspond to spring 6 -->
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion apm-agent-plugins/apm-spring-webmvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.1.5</version> <!-- must be 3.X to correspond to spring 6 -->
<version>3.2.0</version> <!-- must be 3.X to correspond to spring 6 -->
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public static void beforeClass() {
public void setUp() {
doReturn(true).when(config.getConfig(ReporterConfiguration.class)).isReportSynchronously();
restTemplate = new TestRestTemplate(new RestTemplateBuilder()
.setConnectTimeout(Duration.ZERO)
.setReadTimeout(Duration.ZERO)
.setConnectTimeout(Duration.ofSeconds(10))
.setReadTimeout(Duration.ofSeconds(10))
.basicAuthentication("username", "password"));
reporter.reset();
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/spring-boot-3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.1.5</version>
<version>3.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
5 changes: 0 additions & 5 deletions integration-tests/spring-boot-3/spring-boot-3-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@
</properties>

<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version> <!-- jetty doesn't support servlet API 6.x -->
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-2-base</artifactId>
Expand Down

0 comments on commit a4cfea1

Please sign in to comment.