forked from mockative/mockative
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (27 loc) · 821 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (27 loc) · 821 Bytes
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
26
27
28
29
30
31
32
pluginManagement {
repositories {
mavenLocal()
google()
gradlePluginPortal()
mavenCentral()
}
plugins {
kotlin("multiplatform") version "2.2.0" apply false
kotlin("plugin.allopen") version "2.2.0" apply false
id("com.google.devtools.ksp") version "2.2.0-2.0.2" apply false
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
}
rootProject.name = "mockative"
val mockativeProjects = startParameter.projectProperties["mockative.projects"]
if (mockativeProjects != null) {
mockativeProjects.split(",").forEach { project ->
include(project)
}
} else {
include(":shared")
include(":mockative")
include(":mockative-processor")
include(":mockative-plugin")
include(":mockative-test")
}