-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
65 lines (56 loc) · 1.84 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
65 lines (56 loc) · 1.84 KB
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
@file:Suppress("UnstableApiUsage")
rootProject.name = "rell"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
mavenCentral()
maven("https://gitlab.com/api/v4/projects/50818999/packages/maven") {
name = "chromia-parent"
}
maven("https://gitlab.com/api/v4/projects/32294340/packages/maven") {
name = "postchain"
}
maven("https://gitlab.com/api/v4/projects/64941451/packages/maven") {
name = "chromia-cli-tools"
}
maven("https://gitlab.com/api/v4/projects/46288950/packages/maven") {
name = "chromia-misc"
}
maven("https://gitlab.com/api/v4/projects/32802097/packages/maven") {
name = "rell"
}
}
}
include("rell-base")
include("rell-base:utils")
include("rell-base:rr-tree")
include("rell-base:frontend")
include("rell-base:runtime-core")
include("rell-base:runtime-interpreter")
include("rell-base:runtime-truffle")
include("rell-base:test-utils")
include("rell-api-base")
include("rell-api-gtx")
include("rell-api-native")
include("rell-api-shell")
include("rell-gtx")
include("rell-tools")
include("coverage-report-aggregate")
include("rell-toolbox:common")
include("rell-toolbox:ast")
include("rell-toolbox:indexer")
include("rell-toolbox:code-quality")
include("rell-toolbox:language-server")
include("rell-toolbox:seeder")
include("rell-codegen:codegen")
include("rell-codegen:codegen-kotlin")
include("rell-codegen:codegen-typescript")
include("rell-codegen:codegen-javascript")
include("rell-codegen:codegen-python")
include("rell-codegen:codegen-mermaid")
include("rell-codegen:rellgen")
include("rell-dokka-plugin")
include("rell-base:rr-serialization")
include("performance")
include("regression")