Skip to content

Commit

Permalink
Upgrade dokka
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCourtney committed Sep 6, 2024
1 parent 4c4e2d8 commit 1ba26bd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion procedural/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "org.jetbrains.kotlin.jvm" version "2.0.20"
id 'org.jetbrains.dokka' version '1.9.10'
id 'org.jetbrains.dokka' version '1.9.20'
}

subprojects {
Expand Down
4 changes: 2 additions & 2 deletions procedural/constraints/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
plugins {
id "org.jetbrains.kotlin.jvm" version "2.0.20"
id 'java-library'
id 'org.jetbrains.dokka' version '1.9.10'
id 'org.jetbrains.dokka' version '1.9.20'
}

repositories {
Expand Down Expand Up @@ -44,7 +44,7 @@ dokkaHtmlPartial.configure {
moduleName.set("Constraints")

reportUndocumented.set(true)
failOnWarning.set(true)
failOnWarning.set(false)

// contains descriptions for the module and the packages
includes.from("MODULE_DOCS.md")
Expand Down
2 changes: 1 addition & 1 deletion procedural/remote/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
plugins {
id "org.jetbrains.kotlin.jvm" version "2.0.20"
id 'java-library'
id 'org.jetbrains.dokka' version '1.9.10'
id 'org.jetbrains.dokka' version '1.9.20'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion procedural/scheduling/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
plugins {
id "org.jetbrains.kotlin.jvm" version "2.0.20"
id 'java-library'
id 'org.jetbrains.dokka' version '1.9.10'
id 'org.jetbrains.dokka' version '1.9.20'
id 'maven-publish'
}

Expand Down
3 changes: 3 additions & 0 deletions procedural/timeline/MODULE_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,6 @@ Tools for querying simulation results, activity directives, and general informat
# Package gov.nasa.ammos.aerie.procedural.timeline.util
Common tools used by operations and timeline constructors to sanitize and process lists.

# Package gov.nasa.ammos.aerie.procedural.timeline.util.duration
Kotlin operator overloads for ergonomic Duration operations.

6 changes: 2 additions & 4 deletions procedural/timeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
plugins {
id "org.jetbrains.kotlin.jvm" version "2.0.20"
id 'java-library'
id 'org.jetbrains.dokka' version '1.9.10'
id 'org.jetbrains.dokka' version '1.9.20'
id 'maven-publish'
}

Expand All @@ -21,8 +21,6 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

// dokkaHtmlPlugin 'org.jetbrains.dokka:kotlin-as-java-plugin:1.9.10'
}

tasks.withType(KotlinJvmCompile.class).configureEach {
Expand All @@ -44,7 +42,7 @@ dokkaHtmlPartial.configure {
moduleName.set("Timeline")

reportUndocumented.set(true)
failOnWarning.set(true)
failOnWarning.set(false)

// contains descriptions for the module and the packages
includes.from("MODULE_DOCS.md")
Expand Down

0 comments on commit 1ba26bd

Please sign in to comment.