Skip to content

Commit

Permalink
install local maven
Browse files Browse the repository at this point in the history
  • Loading branch information
atakavci committed Nov 18, 2024
1 parent 6d74546 commit 5720746
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/entraid_integration.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
---

name: Integration-EntraID

on:
Expand Down Expand Up @@ -48,17 +46,25 @@ jobs:
~/.m2/repository
/var/cache/apt
key: entraid-${{hashFiles('**/pom.xml')}}
- name: Maven offline

- name: Maven offline-core
run: |
mvn -q dependency:go-offline
working-directory: ./core
- name: Build and install Core into local repo
run: |
mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
working-directory: ./core

- name: Maven offline-jedis
run: |
mvn -q dependency:go-offline
working-directory: ./entraid/jedis
- name: Build and install Jedis supports TBA into local repo
run: |
cd jedis
mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
working-directory: ./entraid/jedis

- name: Build docs
run: |
mvn javadoc:jar
Expand Down

0 comments on commit 5720746

Please sign in to comment.