Skip to content

Commit 9986d92

Browse files
committed
build: added dokka dependencies
1 parent f177e27 commit 9986d92

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ plugins {
66
id("org.jlleitschuh.gradle.ktlint") version "10.3.0" apply false
77
id("com.diffplug.spotless") version "5.0.0" apply false
88
id("com.dorongold.task-tree") version "2.1.0"
9+
id("org.jetbrains.dokka") version "1.8.10"
10+
}
11+
12+
repositories {
13+
mavenLocal()
14+
maven { url = uri("https://artifacts.itemis.cloud/repository/maven-mps/") }
15+
mavenCentral()
916
}
1017

1118
group = "org.modelix"
@@ -25,6 +32,7 @@ fun computeVersion(): Any {
2532

2633
subprojects {
2734
apply(plugin = "maven-publish")
35+
apply(plugin = "org.jetbrains.dokka")
2836
version = rootProject.version
2937
group = rootProject.group
3038

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
org.gradle.jvmargs=-Xmx512m "-XX:MaxMetaspaceSize=2g"
12
systemProp.org.gradle.internal.http.socketTimeout=120000
23
kotlin.daemon.jvmargs=-Xmx2G
34

0 commit comments

Comments
 (0)