diff options
author | pazus <pazus@yandex-team.com> | 2023-10-19 14:28:51 +0300 |
---|---|---|
committer | pazus <pazus@yandex-team.com> | 2023-10-19 15:00:08 +0300 |
commit | 06137dfedfcaa35dcd14688f3e4460c4c83dbfba (patch) | |
tree | 738e84121b6c703a211580f5dc346ac5e2ec64e9 /build/plugins/java.py | |
parent | c9b7da28978d2ef37df7504cd8cb0ae9c7f9a355 (diff) | |
download | ydb-06137dfedfcaa35dcd14688f3e4460c4c83dbfba.tar.gz |
Import Temurin JDK21
Diffstat (limited to 'build/plugins/java.py')
-rw-r--r-- | build/plugins/java.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/plugins/java.py b/build/plugins/java.py index 471c9e48ee1..d917b6e9e6a 100644 --- a/build/plugins/java.py +++ b/build/plugins/java.py @@ -137,7 +137,8 @@ def onjava_module(unit, *args): '17', '18', '19', - '20' + '20', + '21' ): data['ENABLE_PREVIEW'] = extract_macro_calls(unit, 'ENABLE_PREVIEW_VALUE', args_delim) @@ -413,6 +414,7 @@ def on_jdk_version_macro_check(unit, *args): '18', '19', '20', + '21', ) if jdk_version not in available_versions: ymake.report_configure_error( |