blob: 1d84696c13a8dbe4f3f6306a8d577b4980aa5383 (
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
|
{%- 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 = project.properties["version"]
{% endif -%}
repositories {
mavenCentral()
}
java {
withSourcesJar()
withJavadocJar()
}
dependencies {
{%- for library in target.consumer -%}
{% set classpath = library.classpath -%}
{% if classpath|replace('"','') == classpath -%}
{% set classpath = '"' + classpath + '"' -%}
{% endif %}
api({{ classpath }})
{%- 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 -%}
plugins {
id("grpc") {
artifact = "io.grpc:protoc-gen-grpc-java:1.45.0"
}
}
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)
}
{% if publish -%}
{% include 'publish.gradle.kts' -%}
{% endif -%}
|