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 @@ -33,14 +33,15 @@ jobs:
with:
token: ${{ secrets.TC_CLOUD_TOKEN }}

- 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 microsphere-spring-cloud-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

<properties>
<!-- BOM versions -->
<microsphere-spring-boot.version>0.1.12</microsphere-spring-boot.version>
<microsphere-spring-boot.version>0.1.13</microsphere-spring-boot.version>
<testcontainers.version>1.21.4</testcontainers.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