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
6 changes: 3 additions & 3 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 7
matrix:
java: [ '8', '11' , '17' , '21' , '25' ]
maven-profile-spring-boot: [ 'spring-boot-2.1' , 'spring-boot-2.2' , 'spring-boot-2.3',
Expand All @@ -31,14 +30,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 @@ -61,8 +61,8 @@ pom.xml:

| **Branches** | **Purpose** | **Latest Version** |
|--------------|--------------------------------------------------|--------------------|
| **0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x, 4.0.x | 0.2.12 |
| **0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.12 |
| **0.2.x** | Compatible with Spring Boot 3.0.x - 3.5.x, 4.0.x | 0.2.13 |
| **0.1.x** | Compatible with Spring Boot 2.0.x - 2.7.x | 0.1.13 |

Then add the specific modules you need:

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

<properties>
<microsphere-spring.version>0.1.15</microsphere-spring.version>
<microsphere-spring.version>0.1.16</microsphere-spring.version>
<jolokia.version>1.7.2</jolokia.version>
<!-- Testing -->
<junit-jupiter.version>5.14.3</junit-jupiter.version>
<junit-jupiter.version>5.14.4</junit-jupiter.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 @@ -5,7 +5,7 @@
<parent>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-build</artifactId>
<version>0.2.7</version>
<version>0.2.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Loading