Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ pom.xml:

| **Branches** | **Purpose** | **Latest Version** |
|--------------|-------------------------------------------|--------------------|
| **0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x | 0.2.2 |
| **0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.2 |
| **0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x | 0.2.4 |
| **0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.4 |

Then add the specific modules you need:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.NONE;

/**
* {@link ActuatorAutoConfiguration} Test
Expand All @@ -34,7 +35,7 @@
* @since 1.0.0
*/
@SpringBootTest(
webEnvironment = SpringBootTest.WebEnvironment.NONE,
webEnvironment = NONE,
classes = {
ActuatorAutoConfigurationTest.class
}, properties = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.springframework.boot.WebApplicationType.SERVLET;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;

/**
* {@link ActuatorEndpointsAutoConfiguration} Test
Expand All @@ -27,7 +28,7 @@
* @since 1.0.0
*/
@SpringBootTest(
webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
webEnvironment = RANDOM_PORT,
classes = {
ActuatorEndpointsAutoConfigurationTest.class,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

import java.util.List;

import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT;

/**
* Application AutoConfiguration Test
*
Expand All @@ -44,7 +46,7 @@
"spring.mvc.format.date=dd/MM/yyyy",
"logging.level.io.microsphere.spring=DEBUG"
},
webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
webEnvironment = RANDOM_PORT)
@EnableAutoConfiguration
class ApplicationAutoConfigurationTest {

Expand Down
6 changes: 3 additions & 3 deletions microsphere-spring-boot-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<description>Microsphere Spring Boot Parent</description>

<properties>
<microsphere-spring.version>0.2.3</microsphere-spring.version>
<microsphere-spring.version>0.2.4</microsphere-spring.version>
<jolokia.version>1.7.2</jolokia.version>
</properties>

Expand Down Expand Up @@ -77,7 +77,7 @@
<profile>
<id>spring-boot-3.4</id>
<properties>
<spring-boot.version>3.4.10</spring-boot.version>
<spring-boot.version>3.4.11</spring-boot.version>
</properties>
</profile>

Expand All @@ -87,7 +87,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<spring-boot.version>3.5.6</spring-boot.version>
<spring-boot.version>3.5.7</spring-boot.version>
</properties>
</profile>
</profiles>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-build</artifactId>
<version>0.2.1</version>
<version>0.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -51,7 +51,7 @@
</scm>

<properties>
<revision>0.2.3-SNAPSHOT</revision>
<revision>0.2.4-SNAPSHOT</revision>
<java.version>17</java.version>
</properties>

Expand Down