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
|
{%- 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" -%}
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 #}
{%- if "lombok.launch.AnnotationProcessorHider$AnnotationProcessor" in target.annotation_processors %}
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 %}
kotlin("plugin.allopen") version "{{ kotlin_version }}"
{% endif -%}
{%- if target.with_kotlinc_plugin_lombok %}
kotlin("plugin.lombok") version "{{ kotlin_version }}"
{% endif -%}
{%- if target.with_kotlinc_plugin_noarg %}
kotlin("plugin.noarg") version "{{ kotlin_version }}"
{% endif -%}
{%- if target.with_kotlinc_plugin_serialization %}
kotlin("plugin.serialization") version "{{ kotlin_version }}"
{% endif -%}
{%- endif %}
}
{# language level #}
{%- if target.required_jdk != "" %}
java {
toolchain {
languageVersion = JavaLanguageVersion.of("{{ target.required_jdk }}")
}
}
{% endif -%}
{%- if target.with_kotlinc_plugin_allopen %}
allOpen {
annotation("org.springframework.stereotype.Component")
}
{% endif -%}
{%- if with_kotlin %}
kotlin {
jvmToolchain({%- if target.required_jdk -%}{{ target.required_jdk }}{%- else -%}17{%- endif -%})
}
{% 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({%- if target.required_jdk -%}{{ target.required_jdk }}{%- else -%}17{%- endif -%})
}
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", "{%- if target.required_jdk -%}{{ target.required_jdk }}{%- else -%}17{%- endif -%}")
javadocOptions.addBooleanOption("-enable-preview", true)
}
{% endif %}
{# javac flags #}
{%- if (target.javac.flags is defined) and (target.javac.flags|length) %}
tasks.withType<JavaCompile> {
{%- for javac_flag in target.javac.flags %}
{%- if '-Xep:' in javac_flag %}
{% else %}
options.compilerArgs.add("{{ javac_flag }}")
{%- endif %}
{%- endfor %}
}
{%- 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="{%- if export_root.startswith(arcadia_root + '/') -%}{{ arcadia_root }}{%- else -%}{{ export_root }}/.hic_sunt_dracones{%- endif -%}"
{% 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 {
val test by getting {
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")
}
}
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 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 -%}
{%- endfor %}
}
{% if hasJunit5Test -%}
tasks.named<Test>("test") {
useJUnitPlatform()
}
{% endif -%}
{# run_java_program #}
{# {% set runs = targets|selectattr("runs") -%} #}
{% set runs = target.runs -%}
{% if runs -%}
{% for run in runs -%}
val runJav{{ loop.index }} = task<JavaExec>("runJavaProgram{{ loop.index }}") {
group = "build"
description = "Code generation by run java program"
mainClass.set("{{ run.args[0] }}")
{% if run.classpath -%}
{% for classpath in run.classpath -%}
{% set real_classpath = classpath|replace('@', '') -%}
{% set real_classpath = real_classpath|replace('.run.cp', '') -%}
{% set real_classpath = real_classpath|replace('.cplst', '') -%}
{% set real_classpath = real_classpath|replace(export_root, '') -%}
{% set real_gradle_classpath = real_classpath|replace('/', ':') %}
val classPath = "{{ real_gradle_classpath }}"
val classPathParts = classPath.split(":")
classPathParts[classPathParts.size - 2]
classpath = files("$project_root{{ real_classpath }}") + project(classPath.replace(":${classPathParts[classPathParts.size - 2]}.jar", "")).configurations.runtimeClasspath.get()
{% endfor -%}
{% else -%}
classpath = sourceSets.main.get().runtimeClasspath
{% endif -%}
{% set args = run.args -%}
{% if args -%}
val argsList = mutableListOf(
{% for arg in args -%}
"{{ arg }}",
{% endfor -%}
)
argsList.removeAt(0)
args = argsList
{% endif -%}
{% if run.in_dir -%}
{% for dir in run.in_dir -%}
inputs.files(fileTree("{{ dir }}"))
{% endfor -%}
{% endif -%}
{% if run.in -%}
{% for file in run.in -%}
inputs.files("{{ file }}")
{% endfor -%}
{% endif -%}
{% if run.out_dir -%}
{% for dir in run.out_dir -%}
outputs.dir("{{ dir }}")
{% endfor -%}
{#
Не использованы аттрибуты
run-cwd="str"
run-in_dirs_inputs="list"
run-in_noparse="list"
run-out_dir="list"
run-tool="list"
#}
{% endif -%}
}
tasks {
build {
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 -%}
|