We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70738af commit 2e87bdfCopy full SHA for 2e87bdf
stub/build.gradle.kts
@@ -75,11 +75,16 @@ tasks.create<Jar>("javadocJar") {
75
}
76
77
tasks.withType<DokkaTask>().configureEach {
78
+
79
+ val remoteSourceUrl = URI(
80
+ "https://github.com/grpc/grpc-kotlin/blob/master/stub/src/main/java"
81
+ ).toURL()
82
83
dokkaSourceSets {
84
named("main") {
85
sourceLink {
86
localDirectory.set(file("src/main/java"))
- remoteUrl.set(URI("https://github.com/grpc/grpc-kotlin/blob/master/stub/src/main/java").toURL())
87
+ remoteUrl.set(remoteSourceUrl)
88
remoteLineSuffix.set("#L")
89
90
0 commit comments