diff options
author | svidyuk <svidyuk@yandex-team.com> | 2024-11-12 08:51:45 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.com> | 2024-11-12 09:09:41 +0300 |
commit | 85af4d13061cfebb81674f0280d5f7835c0b08b4 (patch) | |
tree | 1b108b1a133eb586a25b84074fdf2f16ee4698c0 /build | |
parent | 621c8c7dade57165d6d431295f7a9a9143a062fa (diff) | |
download | ydb-85af4d13061cfebb81674f0280d5f7835c0b08b4.tar.gz |
Drop old broken groovy related stuff
commit_hash:5511818f738a9382b398431472683745ce1a22ca
Diffstat (limited to 'build')
-rw-r--r-- | build/conf/java.conf | 10 | ||||
-rw-r--r-- | build/scripts/wrap_groovyc.py | 23 |
2 files changed, 0 insertions, 33 deletions
diff --git a/build/conf/java.conf b/build/conf/java.conf index 4bce6eb2e5..d029f6a379 100644 --- a/build/conf/java.conf +++ b/build/conf/java.conf @@ -1890,15 +1890,6 @@ macro WITH_KAPT() { SET(WITH_KAPT_VALUE yes) } -# tag:java-specific -WITH_GROOVY_VALUE= -### @usage: WITH_GROOVY() -### -### Compile groovy source code in this java module -macro WITH_GROOVY() { - SET(WITH_GROOVY_VALUE yes) -} - # tag:kotlin-specific KOTLINC_FLAGS_VALUE=-Xjvm-default=all ### @usage: KOTLINC_FLAGS(-flags) @@ -1979,7 +1970,6 @@ macro WITH_KOTLINC_DETEKT(Options...) { _KOTLIN_VERSION=1.9.24 KOTLIN_VERSION=1.9.24 KOTLIN_BOM_FILE=${ARCADIA_ROOT}/contrib/java/org/jetbrains/kotlin/kotlin-bom/1.9.24/ya.dependency_management.inc -GROOVY_VERSION=3.0.5 DETEKT_VERSION=1.23.7 _KOTLIN_SEM= \ diff --git a/build/scripts/wrap_groovyc.py b/build/scripts/wrap_groovyc.py deleted file mode 100644 index 068b73fd87..0000000000 --- a/build/scripts/wrap_groovyc.py +++ /dev/null @@ -1,23 +0,0 @@ -import platform -import sys -import os -import subprocess - - -def fix_windows(args): - for arg in args: - if os.path.basename(arg) == 'groovyc' and os.path.basename(os.path.dirname(arg)) == 'bin': - yield arg + '.bat' - else: - yield arg - - -if __name__ == '__main__': - env = os.environ.copy() - jdk = sys.argv[1] - env['JAVA_HOME'] = jdk - args = sys.argv[2:] - if platform.system() == 'Windows': - sys.exit(subprocess.Popen(list(fix_windows(args)), env=env).wait()) - else: - os.execve(args[0], args, env) |