Skip to content
This repository was archived by the owner on Dec 3, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,8 @@

"""This script is used to synthesize generated parts of this library."""

import synthtool as s
import synthtool.gcp as gcp
import logging
logging.basicConfig(level=logging.DEBUG)
common_templates = gcp.CommonTemplates()
templates = common_templates.java_library()
s.copy(templates, excludes=[
'.gitignore',
import synthtool.languages.java as java
java.common_templates(excludes=[
'README.md',
])