Skip to content

Commit 0e3fa82

Browse files
authored
Merge pull request #63 from microsphere-projects/dev
Release 0.2.4
2 parents 023e41a + 390715a commit 0e3fa82

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

6868
Then add the specific modules you need:
6969

microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure/ActuatorAutoConfigurationTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
import static org.junit.jupiter.api.Assertions.assertEquals;
2727
import static org.junit.jupiter.api.Assertions.assertNotNull;
28+
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.NONE;
2829

2930
/**
3031
* {@link ActuatorAutoConfiguration} Test
@@ -34,7 +35,7 @@
3435
* @since 1.0.0
3536
*/
3637
@SpringBootTest(
37-
webEnvironment = SpringBootTest.WebEnvironment.NONE,
38+
webEnvironment = NONE,
3839
classes = {
3940
ActuatorAutoConfigurationTest.class
4041
}, properties = {

microsphere-spring-boot-actuator/src/test/java/io/microsphere/spring/boot/actuate/autoconfigure/ActuatorEndpointsAutoConfigurationTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import static org.junit.jupiter.api.Assertions.assertFalse;
1919
import static org.junit.jupiter.api.Assertions.assertNotNull;
2020
import static org.springframework.boot.WebApplicationType.SERVLET;
21+
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
2122

2223
/**
2324
* {@link ActuatorEndpointsAutoConfiguration} Test
@@ -27,7 +28,7 @@
2728
* @since 1.0.0
2829
*/
2930
@SpringBootTest(
30-
webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
31+
webEnvironment = RANDOM_PORT,
3132
classes = {
3233
ActuatorEndpointsAutoConfigurationTest.class,
3334
},

microsphere-spring-boot-core/src/test/java/io/microsphere/spring/boot/autoconfigure/ApplicationAutoConfigurationTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828

2929
import java.util.List;
3030

31+
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;
32+
3133
/**
3234
* Application AutoConfiguration Test
3335
*
@@ -44,7 +46,7 @@
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
4951
class ApplicationAutoConfigurationTest {
5052

microsphere-spring-boot-parent/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
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

@@ -77,7 +77,7 @@
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

@@ -87,7 +87,7 @@
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>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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

@@ -51,7 +51,7 @@
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

0 commit comments

Comments
 (0)