forked from grpc/grpc-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
107 lines (93 loc) · 3.25 KB
/
build.gradle
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
plugins {
id 'com.google.protobuf' version '0.8.11'
id 'org.jetbrains.dokka' version '0.10.1'
// Generate IntelliJ IDEA's .idea & .iml project files
// Starting with 0.8.4 of protobuf-gradle-plugin, *.proto and the gen output files are added
// to IntelliJ as sources. It is no longer necessary to add them manually to the idea {} block
// to jump to definitions from Java and Kotlin files.
// For best results, install the Protobuf and Kotlin plugins for IntelliJ.
id 'idea'
// Provide convenience executables for trying out the examples.
id 'application'
id 'maven-publish'
}
description = 'gRPC Kotlin: Stub'
mainClassName = ''
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {
// Kotlin
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${rootProject.ext.coroutinesVersion}"
// Grpc and Protobuf
implementation "io.grpc:grpc-protobuf:${rootProject.ext.grpcVersion}"
implementation "io.grpc:grpc-stub:${rootProject.ext.grpcVersion}"
// Java
implementation "javax.annotation:javax.annotation-api:1.2"
// Testing
testImplementation "junit:junit:4.12"
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.5.2"
testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.3.61"
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.3.2'
testImplementation "com.google.truth.extensions:truth-proto-extension:1.0"
testImplementation "io.grpc:grpc-testing:${rootProject.ext.grpcVersion}" // gRCP testing utilities
}
protobuf {
protoc { artifact = "com.google.protobuf:protoc:${rootProject.ext.protobufVersion}" }
plugins {
// Specify protoc to generate using kotlin protobuf plugin
grpc {
artifact = "io.grpc:protoc-gen-grpc-java:${rootProject.ext.grpcVersion}"
}
// Specify protoc to generate using our grpc kotlin plugin
grpckt {
path = "$rootDir/compiler/build/install/grpc-kotlin-compiler/bin/grpc-kotlin-compiler"
}
}
generateProtoTasks {
all().each { task ->
if (task.name.startsWith('generateTestProto')) {
task.dependsOn { ':grpc-kotlin-compiler:installDist' }
}
task.plugins {
// Generate Java gRPC classes
grpc { }
// Generate Kotlin gRPC using the custom plugin from library
grpckt { }
}
}
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
duplicatesStrategy 'exclude'
includeEmptyDirs false
from javadoc.destinationDir
}
task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
outputFormat = 'javadoc'
outputDirectory = "$buildDir/javadoc"
}
javadocJar {
dependsOn dokkaJavadoc
from dokkaJavadoc.outputDirectory
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
publishing {
publications {
maven(MavenPublication) {
from components.java
// Dokka 0.10.1 does not work for JDK 10+
if (JavaVersion.current() == JavaVersion.VERSION_1_8) {
artifact javadocJar
artifact sourcesJar
}
}
}
}