diff options
author | Vladislav Rudskoy <rudskoy.vladislav@gmail.com> | 2022-02-10 16:45:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:39 +0300 |
commit | 40818269bfff82d9f57f47db333acbdda5c44fb0 (patch) | |
tree | 80b4c7c6300e95384218422adf3a140229b5372c /build/plugins/java.py | |
parent | bf9e69a933f89af083d895185f01ed65e4d90766 (diff) | |
download | ydb-40818269bfff82d9f57f47db333acbdda5c44fb0.tar.gz |
Restoring authorship annotation for Vladislav Rudskoy <rudskoy.vladislav@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/java.py')
-rw-r--r-- | build/plugins/java.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/build/plugins/java.py b/build/plugins/java.py index 16fc126734..c3d1625ca2 100644 --- a/build/plugins/java.py +++ b/build/plugins/java.py @@ -33,10 +33,10 @@ def extract_macro_calls2(unit, macro_value_name): def on_run_jbuild_program(unit, *args): args = list(args) - """ - Custom code generation - @link: https://wiki.yandex-team.ru/yatool/java/#kodogeneracijarunjavaprogram - """ + """ + Custom code generation + @link: https://wiki.yandex-team.ru/yatool/java/#kodogeneracijarunjavaprogram + """ flat, kv = common.sort_by_keywords({'IN': -1, 'IN_DIR': -1, 'OUT': -1, 'OUT_DIR': -1, 'CWD': 1, 'CLASSPATH': -1, 'CP_USE_COMMAND_FILE': 1, 'ADD_SRCS_TO_CLASSPATH': 0}, args) depends = kv.get('CLASSPATH', []) + kv.get('JAR', []) @@ -58,11 +58,11 @@ def on_run_jbuild_program(unit, *args): def ongenerate_script(unit, *args): - """ - heretic@ promised to make tutorial here - Don't forget - Feel free to remind - """ + """ + heretic@ promised to make tutorial here + Don't forget + Feel free to remind + """ flat, kv = common.sort_by_keywords( {'OUT': -1, 'TEMPLATE': -1, 'CUSTOM_PROPERTY': -1}, args |