We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdf9b09 commit 3adcc4eCopy full SHA for 3adcc4e
1 file changed
build.gradle.kts
@@ -36,8 +36,14 @@ val sonatypePublishingBundleConfiguration by configurations.creating {
36
37
// Merges individual module docs into a single HTML output
38
dependencies {
39
+ val undocumentedProjects = listOf(":static-sqlite-driver", ":internal:sqlite3mcandroid")
40
+
41
for (projectPath in SonatypeCentralUploadPlugin.publishedProjects) {
- dokka(project(path=projectPath, configuration="dokka"))
42
+ if (!undocumentedProjects.contains(projectPath)) {
43
+ // static-sqlite-driver doesn't have a public documentation, we build docs for the rest.
44
+ dokka(project(path=projectPath))
45
+ }
46
47
sonatypePublishingBundleConfiguration(project(path=projectPath, configuration="sonatypePublishingBundleConfiguration"))
48
}
49
0 commit comments