Added maven installation to build

This commit is contained in:
2026-07-31 15:25:11 +05:00
parent 27b87ad8e5
commit 39e444e117

View File

@@ -20,6 +20,15 @@ jobs:
distribution: oracle distribution: oracle
java-version: "25" java-version: "25"
cache: maven cache: maven
- name: Install Maven
run: |
apt-get update
apt-get install -y maven
- name: Check versions
run: |
java --version
mvn --version
- name: Build with Maven - name: Build with Maven
run: mvn --batch-mode clean package run: mvn --batch-mode clean package