From c3025bd5377e0b70c52424c95d4c98e775587e1f Mon Sep 17 00:00:00 2001 From: Sven Mitt Date: Tue, 3 Feb 2026 15:46:09 +0200 Subject: [PATCH 1/2] build(deps): bump version to 3.2.1-SNAPSHOT WE2-1175 Signed-off-by: Sven Mitt --- example/pom.xml | 4 ++-- pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/pom.xml b/example/pom.xml index bdb944b..a6bbebb 100644 --- a/example/pom.xml +++ b/example/pom.xml @@ -10,7 +10,7 @@ eu.webeid.example web-eid-springboot-example - 3.2.0 + 3.2.1-SNAPSHOT web-eid-springboot-example Example Spring Boot application that demonstrates how to use Web eID for authentication and digital signing @@ -19,7 +19,7 @@ 17 3.5.3 - 3.2.0 + 3.2.1-SNAPSHOT 6.1.0 1.44 3.5.1 diff --git a/pom.xml b/pom.xml index 651583a..4ff9075 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ 4.0.0 authtoken-validation eu.webeid.security - 3.2.0 + 3.2.1-SNAPSHOT jar authtoken-validation Web eID authentication token validation library for Java From 82f18f525c248a3b2a9bc3dd9c8646a51655add7 Mon Sep 17 00:00:00 2001 From: Sven Mitt Date: Tue, 3 Feb 2026 15:56:00 +0200 Subject: [PATCH 2/2] build: install latest library during example build WE2-1175 Signed-off-by: Sven Mitt --- .github/workflows/maven-build-example.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/maven-build-example.yml b/.github/workflows/maven-build-example.yml index 3893cbd..8f044b2 100644 --- a/.github/workflows/maven-build-example.yml +++ b/.github/workflows/maven-build-example.yml @@ -10,10 +10,6 @@ on: - 'example/**' - '.github/workflows/*example*' -defaults: - run: - working-directory: ./example - jobs: build: runs-on: ubuntu-latest @@ -33,9 +29,9 @@ jobs: key: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }} - - name: Build - run: mvn --batch-mode compile - - - name: Test and package - run: mvn --batch-mode package + - name: Install library + run: mvn -B -ntp install + - name: Build example project + working-directory: ./example + run: mvn -B -ntp package