File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 41
41
~/.m2/repository
42
42
/var/cache/apt
43
43
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
+
44
63
- name : Maven offline
45
64
run : |
46
65
mvn -q dependency:go-offline
You can’t perform that action at this time.
0 commit comments