Skip to content
This repository was archived by the owner on Aug 6, 2024. It is now read-only.

Commit df7f8fd

Browse files
Bump to Spring Boot 3.2 and move to .imports file (#245)
Co-authored-by: Mark Douglass <mdouglass@vmware.com>
1 parent 7ce8db2 commit df7f8fd

File tree

10 files changed

+9
-13
lines changed

10 files changed

+9
-13
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.wavefront</groupId>
55
<artifactId>wavefront-spring-boot-build</artifactId>
6-
<version>3.0.3-SNAPSHOT</version>
6+
<version>3.2.0-SNAPSHOT</version>
77
<packaging>pom</packaging>
88
<name>Wavefront Spring Boot Build</name>
99
<description>Wavefront by VMware integration for Spring Boot</description>

wavefront-spring-boot-bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.wavefront</groupId>
66
<artifactId>wavefront-spring-boot-build</artifactId>
7-
<version>3.0.3-SNAPSHOT</version>
7+
<version>3.2.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>wavefront-spring-boot-bom</artifactId>

wavefront-spring-boot-parent/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.wavefront</groupId>
66
<artifactId>wavefront-spring-boot-bom</artifactId>
7-
<version>3.0.3-SNAPSHOT</version>
7+
<version>3.2.0-SNAPSHOT</version>
88
<relativePath>../wavefront-spring-boot-bom</relativePath>
99
</parent>
1010
<artifactId>wavefront-spring-boot-parent</artifactId>
@@ -19,7 +19,7 @@
1919

2020
<properties>
2121
<java.version>17</java.version>
22-
<spring-boot.version>3.0.6</spring-boot.version>
22+
<spring-boot.version>3.2.0</spring-boot.version>
2323
</properties>
2424

2525
<dependencyManagement>

wavefront-spring-boot-sample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.wavefront</groupId>
66
<artifactId>wavefront-spring-boot-parent</artifactId>
7-
<version>3.0.3-SNAPSHOT</version>
7+
<version>3.2.0-SNAPSHOT</version>
88
<relativePath>../wavefront-spring-boot-parent</relativePath>
99
</parent>
1010
<artifactId>wavefront-spring-boot-sample</artifactId>

wavefront-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.wavefront</groupId>
66
<artifactId>wavefront-spring-boot-parent</artifactId>
7-
<version>3.0.3-SNAPSHOT</version>
7+
<version>3.2.0-SNAPSHOT</version>
88
<relativePath>../wavefront-spring-boot-parent</relativePath>
99
</parent>
1010
<artifactId>wavefront-spring-boot-starter</artifactId>

wavefront-spring-boot/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.wavefront</groupId>
66
<artifactId>wavefront-spring-boot-parent</artifactId>
7-
<version>3.0.3-SNAPSHOT</version>
7+
<version>3.2.0-SNAPSHOT</version>
88
<relativePath>../wavefront-spring-boot-parent</relativePath>
99
</parent>
1010
<artifactId>wavefront-spring-boot</artifactId>
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
org.springframework.boot.env.EnvironmentPostProcessor=\
22
com.wavefront.spring.autoconfigure.AccountManagementEnvironmentPostProcessor
3-
4-
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
5-
com.wavefront.spring.actuate.WavefrontEndpointAutoConfiguration
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
com.wavefront.spring.actuate.WavefrontEndpointAutoConfiguration

wavefront-spring-boot/src/test/java/com/wavefront/spring/autoconfigure/AccountManagementIntegrationTests.java

-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import com.wavefront.spring.actuate.WavefrontEndpointAutoConfiguration;
44
import com.wavefront.spring.autoconfigure.AccountManagementIntegrationTests.TestConfiguration;
55

6-
import org.junit.jupiter.api.Disabled;
76
import org.junit.jupiter.api.Test;
87
import org.junit.jupiter.api.extension.ExtendWith;
98

@@ -19,7 +18,6 @@
1918
*
2019
* @author Stephane Nicoll
2120
*/
22-
@Disabled("TODO")
2321
@SpringBootTest(classes = TestConfiguration.class)
2422
@ExtendWith(OutputCaptureExtension.class)
2523
class AccountManagementIntegrationTests {

wavefront-spring-boot/src/test/resources/logback-test.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration>
33
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
44
<property name="CONSOLE_LOG_PATTERN"
5-
value="%d{yyyy-MM-dd HH:mm:ss.SSS} %5p --- [%15.15t] %-40.40logger{1.} : %m%n"/>
5+
value="%d{yyyy-MM-dd HH:mm:ss.SSS} %5p --- [%15.15t] %-40.40logger : %m%n"/>
66
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
77
<encoder>
88
<pattern>${CONSOLE_LOG_PATTERN}</pattern>

0 commit comments

Comments
 (0)