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
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
[![Codecov](https://codecov.io/gh/microsphere-projects/microsphere-spring-cloud/branch/dev/graph/badge.svg)](https://app.codecov.io/gh/microsphere-projects/microsphere-spring-cloud)
![Maven](https://img.shields.io/maven-central/v/io.github.microsphere-projects/microsphere-spring-cloud.svg)
![License](https://img.shields.io/github/license/microsphere-projects/microsphere-spring-cloud.svg)
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/microsphere-projects/microsphere-spring-cloud.svg)](http://isitmaintained.com/project/microsphere-projects/microsphere-spring-cloud "Average time to resolve an issue")
[![Percentage of issues still open](http://isitmaintained.com/badge/open/microsphere-projects/microsphere-spring-cloud.svg)](http://isitmaintained.com/project/microsphere-projects/microsphere-spring-cloud "Percentage of issues still open")


Microsphere Spring Cloud is an extension library for Spring Cloud that enhances and optimizes its capabilities,
particularly focused on providing dynamic runtime configuration changes without application restarts. It's designed to
Expand Down Expand Up @@ -62,8 +61,8 @@ pom.xml:

| **Branches** | **Purpose** | **Latest Version** |
|--------------|--------------------------------------------------|--------------------|
| **0.2.x** | Compatible with Spring Cloud 2022.0.x - 2025.0.x | 0.2.4 |
| **0.1.x** | Compatible with Spring Cloud Hoxton - 2021.0.x | 0.1.4 |
| **0.2.x** | Compatible with Spring Cloud 2022.0.x - 2025.0.x | 0.2.5 |
| **0.1.x** | Compatible with Spring Cloud Hoxton - 2021.0.x | 0.1.5 |

Then add the specific modules you need:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
import static io.microsphere.spring.core.annotation.AnnotationUtils.getAnnotationAttributes;
import static io.microsphere.spring.test.util.SpringTestUtils.testInSpringContainer;
import static io.microsphere.util.ArrayUtils.isEmpty;
import static io.microsphere.util.ArrayUtils.length;
import static java.lang.String.valueOf;
import static java.lang.System.getProperties;
import static org.apache.commons.io.IOUtils.length;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.springframework.core.type.AnnotationMetadata.introspect;
import static org.springframework.util.StringUtils.hasText;
Expand Down
2 changes: 1 addition & 1 deletion microsphere-spring-cloud-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<properties>
<!-- BOM versions -->
<microsphere-spring-boot.version>0.2.4</microsphere-spring-boot.version>
<microsphere-spring-boot.version>0.2.5</microsphere-spring-boot.version>
<testcontainers.version>2.0.1</testcontainers.version>
</properties>

Expand Down
26 changes: 1 addition & 25 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</scm>

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

Expand All @@ -63,28 +63,4 @@
<module>microsphere-spring-cloud-openfeign</module>
</modules>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<repositories>
<repository>
<id>snapshot</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>

</project>