Skip to content

Commit

Permalink
Small clean up on the documentation
Browse files Browse the repository at this point in the history
- Add folder site/ to .gitignore so it doesn't show as untracked when
building the documentation locally
- Remove docs/releasing.md in favor of the same file that's exists
at the root folder
- Update Dokka Gradle plugin to 1.7.10
- Fix the API javadocs directory to match with what the build script
is expecting: docs/1.x
  • Loading branch information
fcduarte committed Aug 2, 2022
1 parent b0d62ff commit 017db42
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 49 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -17,3 +17,4 @@ generated
docs/1.x
docs/changelog.md
docs/index.md
site/
47 changes: 0 additions & 47 deletions docs/releasing.md

This file was deleted.

2 changes: 1 addition & 1 deletion paparazzi/build.gradle
Expand Up @@ -15,7 +15,7 @@ buildscript {
classpath deps.plugins.android
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.20.0'
classpath 'org.ajoberstar.grgit:grgit-gradle:5.0.0'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.6.21'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.7.10'
classpath deps.plugins.versions
classpath deps.plugins.spotless
}
Expand Down
2 changes: 1 addition & 1 deletion paparazzi/paparazzi/build.gradle
Expand Up @@ -71,7 +71,7 @@ dependencies {
}

tasks.named("dokkaGfm").configure {
outputDirectory = rootProject.file("docs/1.x")
outputDirectory = rootProject.file("../docs/1.x")

dokkaSourceSets.named("main") {
configureEach {
Expand Down

0 comments on commit 017db42

Please sign in to comment.