-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
25 lines (22 loc) · 947 Bytes
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.4/userguide/building_swift_projects.html in the Gradle documentation.
* This project uses @Incubating APIs which are subject to change.
*/
rootProject.name = "keen"
include(":keen-core", ":examples", ":benchmarks")
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
plugins {
kotlin("jvm") version extra["kotlin.version"] as String
id("io.gitlab.arturbosch.detekt") version extra["detekt.version"] as String
id("org.jetbrains.compose") version extra["compose.version"] as String
id("org.jetbrains.dokka") version extra["dokka.version"] as String
}
}