Skip to content

Commit 6b8dbea

Browse files
committed
build into local dependency
1 parent 8a8332f commit 6b8dbea

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/entraid_snapshot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,25 @@
4141
~/.m2/repository
4242
/var/cache/apt
4343
key: entraid-${{hashFiles('**/pom.xml')}}
44+
45+
- name: Maven offline-core
46+
run: |
47+
mvn -q dependency:go-offline
48+
working-directory: ./core
49+
- name: Build and install Core into local repo
50+
run: |
51+
mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
52+
working-directory: ./core
53+
54+
- name: Maven offline-jedis
55+
run: |
56+
mvn -q dependency:go-offline
57+
working-directory: ./jedis
58+
- name: Build and install Jedis supports TBA into local repo
59+
run: |
60+
mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
61+
working-directory: ./jedis
62+
4463
- name: Maven offline
4564
run: |
4665
mvn -q dependency:go-offline

0 commit comments

Comments
 (0)