1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
|
val baseBuildDir = "{{ export_root }}/gradle.build/"
buildDir = file(baseBuildDir + project.path.replaceFirst(":", "/").replace(":", "."))
subprojects {
buildDir = file(baseBuildDir + project.path.replaceFirst(":", "/").replace(":", "."))
}
{%- macro OutDirs(runs, prefix, suffix) -%}
{%- if run.args|length and run.out_dir|length -%}
{%- for out_dir in run.out_dir -%}
{#- search all run arguments ended by /<out_dir> -#}
{%- set out_dirs = select_by_ends(run.args, "/" + out_dir) -%}
{%- if out_dirs|length %}
{{ prefix }}{{ out_dirs|first }}{{ suffix }}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- endmacro %}
{%- set mainClass = target.app_main_class -%}
{%- set publish = target.publish -%}
{%- set with_kotlin = target.with_kotlin -%}
{%- set kotlin_version = target.kotlin_version -%}
{%- set hasJunit5Test = extra_targets|selectattr('junit5_test') -%}
{%- set errorprone_plugin_version = "4.0.0" -%}
{%- if not target.required_jdk -%}
{%- set has_required_jdk = false -%}
{#- If no required JDK, set default JDK for Kotlin parts -#}
{%- set required_jdk = '17' -%}
{%- else -%}
{%- set has_required_jdk = true -%}
{#- Use JDK 23 instead 22 -#}
{%- if target.required_jdk == '22' -%}
{%- set required_jdk = '23' -%}
{%- else -%}
{%- set required_jdk = target.required_jdk -%}
{%- endif -%}
{%- endif %}
plugins {
{#- some plugins configuration -#}
{%- for library in target.consumer if library.classpath -%}
{#- error prone plugin configuration -#}
{%- if library.prebuilt and library.jar and (library.type != "contrib" or build_contribs) and "contrib/java/com/google/errorprone/error_prone_annotations/" in library.jar -%}
id("net.ltgt.errorprone") version "{{ errorprone_plugin_version }}"
{%- endif -%}
{%- endfor -%}
{#- lombok configuration -#}
{#- TODO remove usings annotation_processors semantic -#}
{%- if ("lombok.launch.AnnotationProcessorHider$AnnotationProcessor" in target.annotation_processors) or (target.use_annotation_processor|length and target.use_annotation_processor|select('startsWith', 'contrib/java/org/projectlombok/lombok')|length) %}
id("io.freefair.lombok") version "8.6"
{%- endif -%}
{%- if mainClass %}
`application`
{%- else %}
`java-library`
{%- endif %}
{%- if publish %}
`maven-publish`
`signing`
{%- endif -%}
{%- if with_kotlin and kotlin_version %}
kotlin("jvm") version "{{ kotlin_version }}"
{%- if target.with_kotlinc_plugin_allopen|length %}
kotlin("plugin.allopen") version "{{ kotlin_version }}"
{% endif -%}
{%- if target.with_kotlinc_plugin_lombok|length %}
kotlin("plugin.lombok") version "{{ kotlin_version }}"
{% endif -%}
{%- if target.with_kotlinc_plugin_noarg|length %}
kotlin("plugin.noarg") version "{{ kotlin_version }}"
{% endif -%}
{%- if target.with_kotlinc_plugin_serialization|length %}
kotlin("plugin.serialization") version "{{ kotlin_version }}"
{% endif -%}
{%- endif %}
}
{#- language level -#}
{%- if has_required_jdk %}
java {
toolchain {
languageVersion = JavaLanguageVersion.of("{{ required_jdk }}")
}
}
{% endif -%}
{%- if target.with_kotlinc_plugin_allopen|length -%}
{%- set allopen_annotations = [] -%}
{%- if target.with_kotlinc_plugin_allopen|select('eq', 'preset=spring')|length -%}
{%- set allopen_annotations = allopen_annotations + ['org.springframework.stereotype.Component', 'org.springframework.transaction.annotation.Transactional', 'org.springframework.scheduling.annotation.Async', 'org.springframework.cache.annotation.Cacheable', 'org.springframework.boot.test.context.SpringBootTest', 'org.springframework.validation.annotation.Validated'] -%}
{%- endif -%}
{%- if target.with_kotlinc_plugin_allopen|select('eq', 'preset=quarkus')|length -%}
{%- set allopen_annotations = allopen_annotations + ['javax.enterprise.context.ApplicationScoped', 'javax.enterprise.context.RequestScoped'] -%}
{%- endif -%}
{%- if target.with_kotlinc_plugin_allopen|select('eq', 'preset=micronaut')|length -%}
{%- set allopen_annotations = allopen_annotations + ['io.micronaut.aop.Around', 'io.micronaut.aop.Introduction', 'io.micronaut.aop.InterceptorBinding', 'io.micronaut.aop.InterceptorBindingDefinitions'] -%}
{%- endif -%}
{%- if target.with_kotlinc_plugin_allopen|select('startsWith', 'annotation=')|length -%}
{%- set sannotations = target.with_kotlinc_plugin_allopen|select('startsWith', 'annotation=')|join('|')|replace('annotation=','') -%}
{%- set annotations = split(sannotations, '|') -%}
{%- set allopen_annotations = allopen_annotations + annotations -%}
{%- endif -%}
{%- set allopen_options = target.with_kotlinc_plugin_allopen|reject('startsWith', 'preset=')|reject('startsWith', 'annotation=')|reject('eq', 'default') %}
allOpen {
{%- if allopen_options|length -%}
{%- for option in allopen_options|unique %}
{{ option }}
{%- endfor -%}
{%- endif %}
{%- if allopen_annotations|length -%}
{%- for annotation in allopen_annotations|unique %}
annotation("{{ annotation }}")
{%- endfor -%}
{%- endif %}
}
{% endif -%}
{%- if target.with_kotlinc_plugin_noarg|length -%}
{%- set noarg_annotations = [] -%}
{%- if target.with_kotlinc_plugin_noarg|select('eq', 'preset=jpa')|length -%}
{%- set noarg_annotations = noarg_annotations + ['javax.persistence.Entity', 'javax.persistence.Embeddable', 'javax.persistence.MappedSuperclass', 'jakarta.persistence.Entity', 'jakarta.persistence.Embeddable', 'jakarta.persistence.MappedSuperclass'] -%}
{%- endif -%}
{%- if target.with_kotlinc_plugin_noarg|select('startsWith', 'annotation=')|length -%}
{%- set sannotations = target.with_kotlinc_plugin_noarg|select('startsWith', 'annotation=')|join('|')|replace('annotation=','') -%}
{%- set annotations = split(sannotations, '|') -%}
{%- set noarg_annotations = noarg_annotations + annotations -%}
{%- endif -%}
{%- set noarg_options = target.with_kotlinc_plugin_noarg|reject('startsWith', 'preset=')|reject('startsWith', 'annotation=')|reject('eq', 'default') %}
noArg {
{%- if noarg_options|length -%}
{%- for option in noarg_options|unique %}
{{ option }}
{%- endfor -%}
{%- endif %}
{%- if noarg_annotations|length -%}
{%- for annotation in noarg_annotations|unique %}
annotation("{{ annotation }}")
{%- endfor -%}
{%- endif %}
}
{% endif -%}
{%- if with_kotlin %}
kotlin {
jvmToolchain({{ required_jdk }})
}
{% endif -%}
{%- if publish %}
group = "{{ target.publish_group }}"
version = {% if target.publish_version and target.publish_version != "no" -%}"{{ target.publish_version }}"{%- else -%}project.properties["version"]!!{%- endif %}
{% endif -%}
{%- if target.enable_preview %}
tasks.withType<JavaCompile> {
options.compilerArgs.add("--enable-preview")
options.compilerArgs.add("-Xlint:preview")
options.release.set({{ required_jdk }})
}
tasks.withType<JavaExec> {
jvmArgs?.add("--enable-preview")
}
tasks.withType<Test> {
jvmArgs?.add("--enable-preview")
environment["JAVA_TOOL_OPTIONS"] = "--enable-preview"
}
tasks.withType<Javadoc> {
val javadocOptions = options as CoreJavadocOptions
javadocOptions.addStringOption("source", "{{ required_jdk }}")
javadocOptions.addBooleanOption("-enable-preview", true)
}
{% endif -%}
{#- javac flags -#}
{%- if target.javac.flags|length -%}
{%- set javac_flags = target.javac.flags|reject('startsWith', '-Xep:') -%}
{%- if javac_flags|length %}
tasks.withType<JavaCompile> {
{%- for javac_flag in javac_flags %}
options.compilerArgs.add("{{ javac_flag }}")
{%- endfor %}
}
{%- endif -%}
{%- endif %}
val bucketUsername: String by project
val bucketPassword: String by project
repositories {
repositories {
maven {
url = uri("https://bucket.yandex-team.ru/v1/maven/central")
credentials {
username = "$bucketUsername"
password = "$bucketPassword"
}
}
}
}
val project_root = "{{ arcadia_root }}"
{% if mainClass -%}
application {
mainClass.set("{{ mainClass }}")
}
{% endif -%}
java {
withSourcesJar()
withJavadocJar()
}
configurations.api {
isTransitive = false
}
configurations.implementation {
isTransitive = false
}
configurations.testImplementation {
isTransitive = false
}
{%- if has_test %}
val testsJar by tasks.registering(Jar::class) {
dependsOn(JavaPlugin.COMPILE_TEST_JAVA_TASK_NAME)
archiveClassifier.set("tests")
from(sourceSets["test"].output)
}
artifacts.add(configurations.create("testArtifacts").name, testsJar)
tasks.test {
testLogging {
showStandardStreams = true
events("passed", "skipped", "failed")
}
}
{% endif -%}
{%- if target.jar_source_set is defined %}
{%- for source_set in target.jar_source_set -%}
{%- set srcdir_glob = split(source_set, ':') %}
sourceSets.main.java.srcDirs += "{{ srcdir_glob[0] }}"
{%- endfor -%}
{%- endif -%}
{% for extra_target in extra_targets -%}
{%- if extra_target.jar_source_set is defined -%}
{%- for source_set in extra_target.jar_source_set -%}
{%- set srcdir_glob = split(source_set, ':') %}
sourceSets.main.java.srcDirs += "{{ srcdir_glob[0] }}"
{%- endfor -%}
{%- endif -%}
{%- endfor -%}
sourceSets {
main {
{#-
Default by Gradle:
java.srcDir("src/main/java")
resources.srcDir("src/main/resources")
#}
{%- if target.runs|length -%}
{%- for run in target.runs -%}
{{ OutDirs(run, ' java.srcDir("', '")') }}
{%- endfor -%}
{%- endif %}
}
test {
{#-
Default by Gradle:
java.srcDir("src/test/java")
resources.srcDir("src/test/resources")
#}
java.srcDir("ut/java")
resources.srcDir("ut/resources")
java.srcDir("src/test-integration/java")
resources.srcDir("src/test-integration/resources")
java.srcDir("src/testFixtures/java")
resources.srcDir("src/testFixtures/resources")
java.srcDir("src/intTest/java")
resources.srcDir("src/intTest/resources")
{%- for extra_target in extra_targets -%}
{%- if extra_target|length -%}
{%- for run in extra_target.runs -%}
{{ OutDirs(run, ' java.srcDir("', '")') }}
{%- endfor -%}
{%- endif -%}
{%- endfor %}
}
}
dependencies {
{%- for library in target.consumer if library.classpath -%}
{# error prone plugin configuration #}
{%- if library.prebuilt and library.jar and (library.type != "contrib" or build_contribs) and "contrib/java/com/google/errorprone/error_prone_annotations" in library.jar -%}
{% set errorprone_version = library.jar -%}
{% set errorprone_parts = errorprone_version|replace("contrib/java/com/google/errorprone/error_prone_annotations/") -%}
{% set errorprone_parts = split(errorprone_parts, '/') %}
errorprone("com.google.errorprone:error_prone_core:{{ errorprone_parts[0] }}")
{%- endif -%}
{%- if library.prebuilt and library.jar and (library.type != "contrib" or build_contribs) %}
implementation(files("$project_root/{{ library.jar }}"))
{%- else -%}
{%- set classpath = library.classpath -%}
{%- if classpath|replace('"','') == classpath -%}
{%- set classpath = '"' + classpath + '"' -%}
{%- endif -%}
{%- if library.type != "contrib" %}
{%- if library.testdep %}
implementation(project(path = ":{{ library.testdep | replace("/", ":") }}", configuration = "testArtifacts"))
{%- else %}
implementation({{ classpath }})
{%- endif -%}
{%- else %}
api({{ classpath }})
{%- endif -%}
{%- if library.excludes.consumer is defined %} {
{% for exclude in library.excludes.consumer if exclude.classpath -%}
{%- set classpath = exclude.classpath|replace('"','') -%}
{%- set classpath_parts = split(classpath, ':') -%}
exclude(group = "{{ classpath_parts[0] }}", module = "{{ classpath_parts[1] }}")
{% endfor -%}
}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- for annotation_processor in target.use_annotation_processor %}
annotationProcessor(files("$project_root/{{ annotation_processor}}"))
{%- endfor -%}
{%- for extra_target in extra_targets -%}
{%- for library in extra_target.consumer if library.classpath -%}
{%- if library.prebuilt and library.jar and (library.type != "contrib" or build_contribs) %}
testImplementation(files("$project_root/{{ library.jar }}"))
{%- else -%}
{%- set classpath = library.classpath -%}
{%- if classpath|replace('"','') == classpath -%}
{%- set classpath = '"' + classpath + '"' -%}
{%- endif %}
{%- if library.type != "contrib" and library.testdep %}
testImplementation(project(path = ":{{ library.testdep | replace("/", ":") }}", configuration = "testArtifacts"))
{%- else %}
testImplementation({{ classpath }})
{%- endif -%}
{%- if library.excludes.consumer is defined %} {
{% for exclude in library.excludes.consumer if exclude.classpath -%}
{%- set classpath = exclude.classpath|replace('"','') -%}
{%- set classpath_parts = split(classpath, ':') -%}
exclude(group = "{{ classpath_parts[0] }}", module = "{{ classpath_parts[1] }}")
{% endfor -%}
}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- for annotation_processor in extra_target.use_annotation_processor %}
testAnnotationProcessor(files("$project_root/{{ annotation_processor}}"))
{%- endfor -%}
{%- endfor %}
}
{%- if hasJunit5Test %}
tasks.named<Test>("test") {
useJUnitPlatform()
}
{% endif -%}
{#- run_java_program -#}
{%- if target.runs|length -%}
{%- for run in target.runs %}
val runJav{{ loop.index }} = task<JavaExec>("runJavaProgram{{ loop.index }}") {
group = "build"
description = "Code generation by run java program"
{%- if run.classpath|length %}
{% for classpath in run.classpath -%}
{%- set rel_file_classpath = classpath|replace('@', '')|replace(export_root, '')|replace(arcadia_root, '') %}
val classpaths = "$project_root/" + File("$project_root{{ rel_file_classpath }}").readText().trim().replace(":", ":$project_root/")
classpath = files(classpaths.split(":"))
{%- endfor -%}
{% else %}
classpath = sourceSets.main.get().runtimeClasspath
{%- endif %}
mainClass.set("{{ run.args[0] }}")
{%- if run.args|length > 1 %}
args = listOf(
{%- for arg in run.args -%}
{%- if not loop.first %}
"{{ arg }}",
{%- endif -%}
{%- endfor %}
)
{% endif -%}
{%- if run.in_dir %}
{% for in_dir in run.in_dir -%}
inputs.files(fileTree("{{ in_dir }}"))
{% endfor -%}
{%- endif -%}
{%- if run.in %}
{% for in_file in run.in -%}
inputs.files("{{ in_file }}")
{% endfor -%}
{%- endif -%}
{{ OutDirs(run, ' outputs.dir("', '")') }}
{#
Не использованы аттрибуты
run-cwd="str"
run-in_dirs_inputs="list"
run-in_noparse="list"
run-tool="list"
-#}
}
tasks.getByName("sourcesJar").dependsOn(runJav{{ loop.index }})
tasks.compileJava.configure {
dependsOn(runJav{{ loop.index }})
}
{% endfor -%}
{% endif -%}
{% include "extra-tests.gradle.kts" ignore missing %}
{% if publish -%}
{% include 'publish.gradle.kts' ignore missing -%}
{% endif -%}
{#- To disable redundant javadoc (it may fail the build) #}
tasks.withType<Javadoc>().configureEach {
isEnabled = false
}
{%- include "[generator]/debug.jinja" ignore missing -%}
|