We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa0084 commit db20d5aCopy full SHA for db20d5a
.github/workflows/maven-build-example.yml
@@ -10,10 +10,6 @@ on:
10
- 'example/**'
11
- '.github/workflows/*example*'
12
13
-defaults:
14
- run:
15
- working-directory: ./example
16
-
17
jobs:
18
build:
19
runs-on: ubuntu-latest
@@ -33,12 +29,9 @@ jobs:
33
29
key: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}
34
30
restore-keys: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}
35
31
36
- - name: Build library
37
- run: mvn -B install -pl web-eid-authtoken-validation-java -am
38
39
32
- name: Build
40
- run: mvn --batch-mode compile
+ run: mvn -B -ntp install
41
42
- name: Test and package
43
- run: mvn --batch-mode package
+ run: mvn -B -ntp -pl example -am package
44
0 commit comments