Skip to content

Commit

Permalink
Update dokka version, fix knowledge task (#2463)
Browse files Browse the repository at this point in the history
Co-authored-by: Jing Tang <jingtang@google.com>
  • Loading branch information
williamito and jingtang10 authored Mar 18, 2024
1 parent cbefcbf commit 9519473
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Plugins.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2023 Google LLC
* Copyright 2023-2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -46,6 +46,6 @@ object Plugins {
object Versions {
const val androidGradlePlugin = "8.0.2"
const val benchmarkPlugin = "1.1.0"
const val dokka = "1.7.20"
const val dokka = "1.9.20"
}
}
7 changes: 7 additions & 0 deletions knowledge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ tasks.dokkaHtml.configure {
moduleName.set(Releases.Knowledge.artifactId)
moduleVersion.set(Releases.Knowledge.version)
noAndroidSdkLink.set(false)
sourceLink {
localDirectory.set(file("src/main/java"))
remoteUrl.set(
URL("https://github.com/google/android-fhir/tree/master/knowledge/src/main/java"),
)
remoteLineSuffix.set("#L")
}
externalDocumentationLink {
url.set(URL("https://hapifhir.io/hapi-fhir/apidocs/hapi-fhir-structures-r4/"))
packageListUrl.set(
Expand Down

0 comments on commit 9519473

Please sign in to comment.