blob: 841c49f14b9788334f9e58d4a473563d8aacc154 (
plain) (
blame)
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
|
{%- set publish = target.publish -%}
import com.google.protobuf.gradle.*
val buildProtoDir = File("${buildDir}", "__proto__")
plugins {
id("java-library")
id("com.google.protobuf") version "0.8.19"
{%- if publish %}
`maven-publish`
`signing`
{%- endif -%}
}
{%- if publish %}
group = "{{ target.publish_group }}"
version = {% if target.publish_version -%}"{{ target.publish_version }}"{%- else -%}project.properties["version"]{%- 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"
}
}
}
}
java {
withSourcesJar()
withJavadocJar()
}
configurations.api {
isTransitive = false
}
configurations.implementation {
isTransitive = false
}
configurations.testImplementation {
isTransitive = false
}
{%- 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 -%}
dependencies {
{%- for library in target.consumer if library.classpath -%}
{%- if library.prebuilt and library.jar and (library.type != "contrib" or target.handler.build_contribs) %}
implementation(files("$project_root/{{ library.jar }}"))
{%- else -%}
{%- if library.type != "contrib" %}
implementation
{%- else %}
api
{%- endif -%}({{ library.classpath }})
{%- if library.excludes.consumer is defined %} {
{% for exclude in library.excludes.consumer -%}
{% set classpath = exclude.classpath|replace('"','') -%}
{% set classpath_parts = split(classpath, ':') -%}
exclude(group = "{{ classpath_parts[0] }}", module = "{{ classpath_parts[1] }}")
{% endfor -%}
}
{%- endif -%}
{%- endif -%}
{%- endfor %}
{% if target.proto_namespace -%}
protobuf(files(File(buildProtoDir, "{{ target.proto_namespace }}")))
{% else -%}
protobuf(files(buildProtoDir))
{% endif -%}
}
protobuf {
protoc {
// Download from repositories
artifact = "com.google.protobuf:protoc:{%- if target.proto_compiler_version -%}{{ target.proto_compiler_version }}{%- else -%}3.22.5{%- endif -%}"
}
{% if target.proto_grpc is defined -%}
plugins {
id("grpc") {
artifact = "io.grpc:protoc-gen-grpc-java:{%- if target.proto_grpc_version -%}{{ target.proto_grpc_version }}{%- else -%}1.45.0{%- endif -%}"
}
}
generateProtoTasks {
ofSourceSet("main").forEach {
it.plugins {
id("grpc")
}
}
}
{%- endif %}
}
val prepareProto = tasks.register<Copy>("prepareProto") {
from(rootDir) {
{%- for proto in target.proto_files %}
include("{{ proto }}")
{%- endfor %}
}
into(buildProtoDir)
}
afterEvaluate {
tasks.getByName("extractProto").dependsOn(prepareProto)
}
{{ dump }}
|