diff --git a/.github/workflows/maven-build-example.yml b/.github/workflows/maven-build-example.yml
index 3893cbd4..8f044b2a 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
diff --git a/example/pom.xml b/example/pom.xml
index bdb944bb..a6bbebb6 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 651583a0..4ff90754 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