Skip to content

Commit 8f1b4c9

Browse files
authored
ci: use maven wrapper with version 3.8.7 to fix google-play-services artifact install (#2269)
* Add debugging flags to mvn install for google-play-services artifact * Print maven version * Add maven wrapper for version 3.8.7 * Try using maven wrapper * Remove debugging flags * Try maven wrapper in github action script * Move maven wrapper setup to root of repo
1 parent 37b195b commit 8f1b4c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,14 @@ jobs:
3535
- name: Install google-play-services artifact
3636
shell: bash
3737
run: |
38+
mvn -v
39+
mvn wrapper:wrapper -Dmaven=3.8.7
3840
mkdir play-services
3941
cd play-services
4042
curl --output play-services-basement-8.3.0.aar https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-basement/8.3.0/play-services-basement-8.3.0.aar
4143
unzip play-services-basement-8.3.0.aar
42-
mvn install:install-file \
44+
../mvnw.cmd -v
45+
../mvnw.cmd install:install-file \
4346
-Dfile=classes.jar \
4447
-DgroupId=com.google.android.google-play-services \
4548
-DartifactId=google-play-services \

0 commit comments

Comments
 (0)