File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,14 @@ jobs:
3636 JOB_TYPE : test
3737 dependencies :
3838 runs-on : ubuntu-latest
39+ strategy :
40+ matrix :
41+ java : [8, 11]
3942 steps :
4043 - uses : actions/checkout@v2
4144 - uses : actions/setup-java@v1
4245 with :
43- java-version : 8
46+ java-version : ${{matrix.java}}
4447 - run : java -version
4548 - run : .kokoro/dependencies.sh
4649 linkage-monitor :
Original file line number Diff line number Diff line change @@ -41,8 +41,10 @@ echo "****************** DEPENDENCY LIST COMPLETENESS CHECK *******************"
4141# # Run dependency list completeness check
4242function completenessCheck() {
4343 # Output dep list with compile scope generated using the original pom
44+ # Running mvn dependency:list on Java versions that support modules will also include the module of the dependency.
45+ # This is stripped from the output as it is not present in the flattened pom.
4446 msg " Generating dependency list using original pom..."
45- mvn dependency:list -f pom.xml -Dsort=true | grep ' \[INFO] .*:.*:.*:.*:.*' | grep -v ' :test$' > .org-list.txt
47+ mvn dependency:list -f pom.xml -Dsort=true | grep ' \[INFO] .*:.*:.*:.*:.*' | sed -e s/ \\ s-- \\ smodule. * // | grep -v ' :test$' > .org-list.txt
4648
4749 # Output dep list generated using the flattened pom (test scope deps are ommitted)
4850 msg " Generating dependency list using flattened pom..."
Original file line number Diff line number Diff line change 44 "git": {
55 "name": ".",
66 "remote": "https://github.com/googleapis/java-logging-logback.git",
7- "sha": "2e8c3b6392a26b356cb2839cbe6abaaa69a6a32c "
7+ "sha": "604e5f45bbc6682d7493062705189ef15504da83 "
88 }
99 },
1010 {
1111 "git": {
1212 "name": "synthtool",
1313 "remote": "https://github.com/googleapis/synthtool.git",
14- "sha": "c4f3059c27591eb24d6942a0e357ec94c80459f2 "
14+ "sha": "4f2c9f752a94042472fc03c5bd9e06e89817d2bd "
1515 }
1616 }
1717 ]
You can’t perform that action at this time.
0 commit comments