-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
48 lines (41 loc) · 915 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pluginManagement {
// TODO better way of testing and including plugin
includeBuild("${rootProject.projectDir}\\gradle-plugin") {
name = "drifter-plugin"
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "Drifter"
val isCI = System.getenv("CI") != null
if (!isCI) {
// Demo Application
include(":demo:app")
include(":demo:module-unity")
}
// Drifter
include(":bom")
include(":codegen")
include(":compiler")
include(":compose")
include(":core")
include(":integration")
include(":runtime")
include(":wallpaper")
// Plugin
include(":gradle-plugin")
// Unity
include(":unity:common")
include(":unity:v2022-3-7f1")