File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ jobs:
45
45
46
46
- uses : gradle/gradle-build-action@v3
47
47
48
- - run : ./gradlew :dokkaHtmlMultiModule --no-configuration-cache
48
+ - run : ./gradlew dokkaGenerate
49
49
50
50
- name : Build site
51
51
run : mkdocs build
52
52
53
53
- name : Copy Dokka output to site
54
- run : cp -r build/dokka/htmlMultiModule / site/api/
54
+ run : cp -r build/dokka/html / site/api/
55
55
56
56
- name : Upload artifact
57
57
uses : actions/upload-pages-artifact@v3
Original file line number Diff line number Diff line change @@ -2,8 +2,15 @@ plugins {
2
2
alias(libs.plugins.androidApplication) apply false
3
3
alias(libs.plugins.androidLibrary) apply false
4
4
alias(libs.plugins.composeCompiler) apply false
5
+ alias(libs.plugins.dokka)
5
6
alias(libs.plugins.kotlin) apply false
6
7
alias(libs.plugins.ksp) apply false
7
8
alias(libs.plugins.vanniktechMavenPublish) apply false
8
- alias(libs.plugins.dokka)
9
+ }
10
+
11
+ dependencies {
12
+ dokka(projects.navigationComposeExtended)
13
+ dokka(projects.navigationComposeExtendedAnnotation)
14
+ dokka(projects.navigationComposeExtendedCompiler)
15
+ dokka(projects.navigationComposeExtendedWear)
9
16
}
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ android.nonFinalResIds=false
14
14
# Compose Multiplatform
15
15
org.jetbrains.compose.experimental.uikit.enabled =true
16
16
17
+ # Dokka
18
+ org.jetbrains.dokka.experimental.gradle.pluginMode =V2Enabled
19
+
17
20
POM_NAME =Navigation Compose Extended
18
21
POM_DESCRIPTION =Navigation Compose Extended is a complementary library for AndroidX Jetpack Navigation Compose to improve creation of navigation elements
19
22
You can’t perform that action at this time.
0 commit comments