Skip to content

Commit 84990f2

Browse files
Multi-module dokka build setup
1 parent 467f58e commit 84990f2

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
plugins {
2+
id("cbf.dokka-conventions")
3+
}
4+
5+
dependencies {
6+
dokka(project(":cosmic-binary-format"))
7+
}

buildSrc/src/main/kotlin/cbf.common-conventions.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import org.gradle.accessors.dm.LibrariesForLibs
33
plugins {
44
kotlin("jvm")
55
`maven-publish`
6-
id("org.jetbrains.dokka")
76
}
87

98
group = "xyz.xenondevs.cbf"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
plugins {
2+
id("org.jetbrains.dokka")
3+
}
4+
5+
repositories {
6+
mavenCentral()
7+
}

cosmic-binary-format/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
id("cbf.common-conventions")
3+
id("cbf.dokka-conventions")
34
alias(libs.plugins.jmh)
45
}
56

0 commit comments

Comments
 (0)