Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 49e912a

Browse files
chore: regenerate common templates (#214)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/b24e7806-61f7-4799-8de0-fc5993ab89fb/targets - [ ] To automatically regenerate this PR, check this box. Source-Link: googleapis/synthtool@f8823de Source-Link: googleapis/synthtool@4530cc6
1 parent 161fdba commit 49e912a

13 files changed

Lines changed: 7 additions & 178 deletions

.kokoro/continuous/dependencies.cfg

Lines changed: 0 additions & 12 deletions
This file was deleted.

.kokoro/continuous/integration.cfg

Lines changed: 0 additions & 7 deletions
This file was deleted.

.kokoro/continuous/java11.cfg

Lines changed: 0 additions & 7 deletions
This file was deleted.

.kokoro/continuous/java7.cfg

Lines changed: 0 additions & 7 deletions
This file was deleted.

.kokoro/continuous/java8-osx.cfg

Lines changed: 0 additions & 3 deletions
This file was deleted.

.kokoro/continuous/java8-win.cfg

Lines changed: 0 additions & 3 deletions
This file was deleted.

.kokoro/continuous/lint.cfg

Lines changed: 0 additions & 13 deletions
This file was deleted.

.kokoro/continuous/propose_release.cfg

Lines changed: 0 additions & 53 deletions
This file was deleted.

.kokoro/continuous/samples.cfg

Lines changed: 0 additions & 31 deletions
This file was deleted.

.kokoro/dependencies.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,13 @@ function completenessCheck() {
4343
# Output dep list with compile scope generated using the original pom
4444
# Running mvn dependency:list on Java versions that support modules will also include the module of the dependency.
4545
# This is stripped from the output as it is not present in the flattened pom.
46+
# Only dependencies with 'compile' or 'runtime' scope are included from original dependency list.
4647
msg "Generating dependency list using original pom..."
47-
mvn dependency:list -f pom.xml -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' | sed -e s/\\s--\\smodule.*// | grep -v ':test$' >.org-list.txt
48+
mvn dependency:list -f pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' | sed -e s/\\s--\\smodule.*// >.org-list.txt
4849

49-
# Output dep list generated using the flattened pom (test scope deps are ommitted)
50+
# Output dep list generated using the flattened pom (only 'compile' and 'runtime' scopes)
5051
msg "Generating dependency list using flattened pom..."
51-
mvn dependency:list -f .flattened-pom.xml -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' >.new-list.txt
52+
mvn dependency:list -f .flattened-pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' >.new-list.txt
5253

5354
# Compare two dependency lists
5455
msg "Comparing dependency lists..."
@@ -85,4 +86,4 @@ then
8586
else
8687
msg "Errors found. See log statements above."
8788
exit 1
88-
fi
89+
fi

0 commit comments

Comments
 (0)