Skip to content

Commit

Permalink
Downgrade dokka to non failing version
Browse files Browse the repository at this point in the history
  • Loading branch information
codlab committed Jan 11, 2024
1 parent b7bc967 commit a439cc0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Doc
id: doc
run: |
./gradlew :library:dokkaHtml :dokkaGfmCollector --no-daemon
./gradlew :library:dokkaHtml :dokkaGfmCollector :dokkaJavadocCollector --no-daemon
build_as_remote:
runs-on: ubuntu-latest
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Doc
id: doc
run: |
./gradlew -PDOLBYIO_GRADLE_VERSION_USED="$GITHUB_SHA" :library:dokkaHtml :dokkaGfmCollector --no-daemon
./gradlew -PDOLBYIO_GRADLE_VERSION_USED="$GITHUB_SHA" :library:dokkaHtml :dokkaGfmCollector :dokkaJavadocCollector --no-daemon
release:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion configurations/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ndkVersion = "23.0.7599858"
# Java information
java = "17"
# Dokka
dokka = "1.8.20"
dokka = "1.9.10"
dokka-supress-undocumented = "1.1"
# Quality
detekt = "1.21.0"
Expand Down
6 changes: 3 additions & 3 deletions configurations/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ afterEvaluate {
archiveClassifier.set("sources")
}

if (project.tasks.findByName('dokkaHtml')) {
task javadocJar(type: Jar, dependsOn: dokkaHtml) {
if (project.tasks.findByName('dokkaJavadoc')) {
task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
archiveClassifier.set("javadoc")
from dokkaHtml.outputDirectory
from dokkaJavadoc.outputDirectory
}
} else {
task javadocJar(type: Jar) {
Expand Down
2 changes: 1 addition & 1 deletion dolbyio.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def version = 'v1.6.5'
def version = 'v1.6.6'

if (settings.ext.find("DOLBYIO_GRADLE_VERSION_USED")) {
version = DOLBYIO_GRADLE_VERSION_USED
Expand Down

0 comments on commit a439cc0

Please sign in to comment.