File tree Expand file tree Collapse file tree 6 files changed +14
-10
lines changed
microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure
microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/autoconfigure
microsphere-spring-boot-parent Expand file tree Collapse file tree 6 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ pom.xml:
6262
6363| ** Branches** | ** Purpose** | ** Latest Version** |
6464| --------------| -------------------------------------------| --------------------|
65- | ** 0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x | 0.2.2 |
66- | ** 0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.2 |
65+ | ** 0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x | 0.2.4 |
66+ | ** 0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.4 |
6767
6868Then add the specific modules you need:
6969
Original file line number Diff line number Diff line change 2525
2626import static org .junit .jupiter .api .Assertions .assertEquals ;
2727import static org .junit .jupiter .api .Assertions .assertNotNull ;
28+ import static org .springframework .boot .test .context .SpringBootTest .WebEnvironment .NONE ;
2829
2930/**
3031 * {@link ActuatorAutoConfiguration} Test
3435 * @since 1.0.0
3536 */
3637@ SpringBootTest (
37- webEnvironment = SpringBootTest . WebEnvironment . NONE ,
38+ webEnvironment = NONE ,
3839 classes = {
3940 ActuatorAutoConfigurationTest .class
4041 }, properties = {
Original file line number Diff line number Diff line change 1818import static org .junit .jupiter .api .Assertions .assertFalse ;
1919import static org .junit .jupiter .api .Assertions .assertNotNull ;
2020import static org .springframework .boot .WebApplicationType .SERVLET ;
21+ import static org .springframework .boot .test .context .SpringBootTest .WebEnvironment .RANDOM_PORT ;
2122
2223/**
2324 * {@link ActuatorEndpointsAutoConfiguration} Test
2728 * @since 1.0.0
2829 */
2930@ SpringBootTest (
30- webEnvironment = SpringBootTest . WebEnvironment . RANDOM_PORT ,
31+ webEnvironment = RANDOM_PORT ,
3132 classes = {
3233 ActuatorEndpointsAutoConfigurationTest .class ,
3334 },
Original file line number Diff line number Diff line change 2828
2929import java .util .List ;
3030
31+ import static org .springframework .boot .test .context .SpringBootTest .WebEnvironment .RANDOM_PORT ;
32+
3133/**
3234 * Application AutoConfiguration Test
3335 *
4446 "spring.mvc.format.date=dd/MM/yyyy" ,
4547 "logging.level.io.microsphere.spring=DEBUG"
4648 },
47- webEnvironment = SpringBootTest . WebEnvironment . RANDOM_PORT )
49+ webEnvironment = RANDOM_PORT )
4850@ EnableAutoConfiguration
4951class ApplicationAutoConfigurationTest {
5052
Original file line number Diff line number Diff line change 1919 <description >Microsphere Spring Boot Parent</description >
2020
2121 <properties >
22- <microsphere-spring .version>0.2.3 </microsphere-spring .version>
22+ <microsphere-spring .version>0.2.4 </microsphere-spring .version>
2323 <jolokia .version>1.7.2</jolokia .version>
2424 </properties >
2525
7777 <profile >
7878 <id >spring-boot-3.4</id >
7979 <properties >
80- <spring-boot .version>3.4.10 </spring-boot .version>
80+ <spring-boot .version>3.4.11 </spring-boot .version>
8181 </properties >
8282 </profile >
8383
8787 <activeByDefault >true</activeByDefault >
8888 </activation >
8989 <properties >
90- <spring-boot .version>3.5.6 </spring-boot .version>
90+ <spring-boot .version>3.5.7 </spring-boot .version>
9191 </properties >
9292 </profile >
9393 </profiles >
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >io.github.microsphere-projects</groupId >
77 <artifactId >microsphere-build</artifactId >
8- <version >0.2.1 </version >
8+ <version >0.2.2 </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
5151 </scm >
5252
5353 <properties >
54- <revision >0.2.3 -SNAPSHOT</revision >
54+ <revision >0.2.4 -SNAPSHOT</revision >
5555 <java .version>17</java .version>
5656 </properties >
5757
You can’t perform that action at this time.
0 commit comments