Skip to content

Commit 47b39e6

Browse files
committed
install local maven
1 parent 6d74546 commit 47b39e6

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/entraid_integration.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
---
2-
31
name: Integration-EntraID
42

53
on:
@@ -48,17 +46,25 @@ jobs:
4846
~/.m2/repository
4947
/var/cache/apt
5048
key: entraid-${{hashFiles('**/pom.xml')}}
51-
- name: Maven offline
49+
50+
- name: Maven offline-core
5251
run: |
5352
mvn -q dependency:go-offline
53+
working-directory: ./core
5454
- name: Build and install Core into local repo
5555
run: |
5656
mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
5757
working-directory: ./core
58+
59+
- name: Maven offline-jedis
60+
run: |
61+
mvn -q dependency:go-offline
62+
working-directory: ./jedis
5863
- name: Build and install Jedis supports TBA into local repo
5964
run: |
60-
cd jedis
6165
mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
66+
working-directory: ./jedis
67+
6268
- name: Build docs
6369
run: |
6470
mvn javadoc:jar

0 commit comments

Comments
 (0)