Neenu Shaji | e53dc7d | 2021-12-02 18:33:50 -0500 | [diff] [blame] | 1 | # Copyright 2020 Google LLC |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | """This script is used to synthesize generated parts of this library.""" |
| 16 | |
| 17 | import synthtool as s |
| 18 | from synthtool.languages import java |
| 19 | |
| 20 | for library in s.get_staging_dirs(): |
| 21 | # put any special-case replacements here |
| 22 | s.move(library) |
| 23 | |
| 24 | s.remove_staging_dirs() |
Deepankar Dixit | ecb3fdf | 2023-02-22 11:16:36 -0500 | [diff] [blame] | 25 | java.common_templates(monorepo=True,excludes=[ |
| 26 | ".github/*", |
| 27 | ".kokoro/*", |
| 28 | "CODE_OF_CONDUCT.md", |
| 29 | "CONTRIBUTING.md", |
| 30 | "LICENSE", |
| 31 | "SECURITY.md", |
| 32 | "java.header", |
| 33 | "license-checks.xml", |
| 34 | "README.md", |
| 35 | "samples/*", |
| 36 | "renovate.json", |
| 37 | ".gitignore" |
Neenu Shaji | e53dc7d | 2021-12-02 18:33:50 -0500 | [diff] [blame] | 38 | ]) |