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
5 changes: 3 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v5

- name: Setup JDK ${{ matrix.Java }}
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: maven

- name: Build with Maven
run: ./mvnw
run: mvn
--batch-mode
--update-snapshots
--file pom.xml
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,9 @@ jobs:
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
cache: maven

- name: Publish package
run: mvn
run: ./mvnw
--batch-mode
--update-snapshots
--file pom.xml
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ pom.xml:

| **Branches** | **Purpose** | **Latest Version** |
|--------------|--------------------------------------------------|--------------------|
| **0.2.x** | Compatible with Spring Cloud 2022.0.x - 2025.0.x | 0.2.1 |
| **0.1.x** | Compatible with Spring Cloud Hoxton - 2021.0.x | 0.1.1 |
| **main** | Compatible with Spring Cloud 2022.0.x - 2025.0.x | 0.2.2 |
| **1.x** | Compatible with Spring Cloud Hoxton - 2021.0.x | 0.1.2 |

## Building from Source

Expand Down
2 changes: 1 addition & 1 deletion microsphere-multiactive-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<properties>
<!-- BOM versions -->
<microsphere-spring-cloud.version>0.1.11</microsphere-spring-cloud.version>
<microsphere-spring-cloud.version>0.1.12</microsphere-spring-cloud.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-spring-cloud-parent</artifactId>
<version>0.1.11</version>
<version>0.1.12</version>
</parent>

<groupId>io.github.microsphere-projects</groupId>
Expand Down
Loading