Skip to content
This repository was archived by the owner on Aug 9, 2025. It is now read-only.
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
17 changes: 10 additions & 7 deletions .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Cache Maven packages
uses: actions/cache@v2
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean install -ntp
- name: Upload coverage to Codecov
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
<maven-enforcer-plugin>3.5.0</maven-enforcer-plugin>
<arch-unit-maven-plugin.version>4.0.2</arch-unit-maven-plugin.version>
<jackson-module-kotlin.version>2.18.2</jackson-module-kotlin.version>
<jackson-module-kotlin.version>2.18.3</jackson-module-kotlin.version>
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
<jib-maven.plugin.version>3.4.4</jib-maven.plugin.version>
<git-code-format-maven-plugin.version>5.3</git-code-format-maven-plugin.version>
Expand Down