1234567891011121314151617181920212223242526272829303132333435363738 |
- {#- empty string #}
- protobuf {
- generatedFilesBaseDir = "$buildDir/generated/sources/proto"
- 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:{%- if target.proto_grpc_version -%}{{ target.proto_grpc_version }}{%- else -%}1.45.0{%- endif -%}"
- }
- {%- if target.proto_kotlin_grpc %}
- id("grpckt") {
- artifact = "io.grpc:protoc-gen-grpc-kotlin:{%- if target.proto_kotlin_grpc_version -%}{{ target.proto_kotlin_grpc_version }}{%- else -%}1.3.1{%- endif -%}:jdk8@jar"
- }
- {%- endif %}
- }
- generateProtoTasks {
- all().forEach {
- it.plugins {
- id("grpc")
- {%- if target.proto_kotlin_grpc %}
- id("grpckt")
- {%- endif %}
- }
- {%- if target.proto_kotlin_grpc %}
- it.builtins {
- create("kotlin")
- }
- {%- endif %}
- }
- }
- {%- endif %}
- }
|