Release 1.1.0 #16

Merged
Cedric merged 21 commits from dev into main 2026-07-05 00:03:47 +02:00
Showing only changes of commit 4a04c85fe8 - Show all commits
+3 -3
View File
@@ -14,7 +14,7 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
# 2. Set up Java and Maven (includes Maven, no separate install needed) # 2. Set up Java (Maven wrapper handles Maven version automatically)
- name: Set up JDK (Eclipse Temurin) - name: Set up JDK (Eclipse Temurin)
uses: actions/setup-java@v4 uses: actions/setup-java@v4
with: with:
@@ -22,9 +22,9 @@ jobs:
java-version: "17" java-version: "17"
cache: maven cache: maven
# 3. Build the Spring Boot application # 3. Build the Spring Boot application using the Maven wrapper
- name: Build Spring Boot Application - name: Build Spring Boot Application
run: mvn clean package -DskipTests run: ./mvnw clean package -DskipTests
# 4. Set up Docker Buildx (enables layer caching) # 4. Set up Docker Buildx (enables layer caching)
- name: Set up Docker Buildx - name: Set up Docker Buildx