forked from CharlieTap/chasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
68 lines (50 loc) · 1.39 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
includeBuild("gradle/plugins/kmp-conventions")
includeBuild("gradle/plugins/linting-conventions")
includeBuild("gradle/plugins/publishing-conventions")
includeBuild("gradle/plugins/versions-conventions")
}
plugins {
id("com.gradle.enterprise") version ("3.16.2")
id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlwaysIf(!System.getenv("GITHUB_ACTIONS").isNullOrEmpty())
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
mavenLocal()
maven(url = "https://jitpack.io" )
}
}
include(":ast")
include(":chasm")
include(":decoder")
include(":executor:instantiator")
include(":executor:invoker")
include(":executor:memory")
include(":executor:runtime")
include(":libs:sse2")
include(":libs:stack")
include(":libs:weakref")
include(":stream")
include(":test:fake:decoder")
include(":test:fixture:ast")
include(":test:fixture:executor:runtime")
include(":type-system")
include(":validator")
includeBuild("example")
includeBuild("sweet")
rootProject.name = "chasm-multiplatform"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")