blob: dc410938cd4cf8689a0b721b0632a981fc52e3a9 [file] [log] [blame]
Neenu Shajie53dc7d2021-12-02 18:33:50 -05001# 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
17import synthtool as s
18from synthtool.languages import java
19
20for library in s.get_staging_dirs():
21 # put any special-case replacements here
22 s.move(library)
23
24s.remove_staging_dirs()
Deepankar Dixitecb3fdf2023-02-22 11:16:36 -050025java.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 Shajie53dc7d2021-12-02 18:33:50 -050038])