-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
settings.gradle.kts
80 lines (67 loc) · 2.62 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
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Copyright (c) 2021-2024. ForteScarlet.
*
* Project https://github.com/simple-robot/simpler-robot
* Email [email protected]
*
* This file is part of the Simple Robot Library (Alias: simple-robot, simbot, etc.).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Lesser GNU General Public License for more details.
*
* You should have received a copy of the Lesser GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
rootProject.name = "simple-robot"
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
// benchmarks
// include(":benchmarks:v4-v3-core-benchmark")
// internals
include(":internal-processors:interface-uml-processor")
// gradle
include(":simbot-gradles:simbot-gradle-suspendtransforms")
// processors
include("simbot-processors:simbot-processor-message-element-polymorphic-include")
include(":simbot-commons:simbot-common-annotations")
include(":simbot-commons:simbot-common-collection")
include(":simbot-commons:simbot-common-streamable")
include(":simbot-commons:simbot-common-atomic")
include(":simbot-commons:simbot-common-apidefinition")
include(":simbot-commons:simbot-common-core")
include(":simbot-commons:simbot-common-ktor-inputfile")
include(":simbot-commons:simbot-common-suspend-runner")
include(":simbot-commons:simbot-common-stage-loop")
include(":simbot-api")
include(":simbot-test")
include(":simbot-cores:simbot-core")
include(":simbot-logger")
include(":simbot-logger-slf4j2-impl")
// include(":simbot-quantcat:simbot-quantcat-annotations")
include(":simbot-quantcat:simbot-quantcat-common")
include(":simbot-cores:simbot-core-spring-boot-starter-common")
include(":simbot-cores:simbot-core-spring-boot-starter") // v3
include(":simbot-cores:simbot-core-spring-boot-starter-v2")
// extensions
include(":simbot-extensions:simbot-extension-continuous-session")
// local tests
include(":tests:spring-boot-starter-test")
// local
// if (!(System.getProperty("IS_CI") ?: System.getenv("IS_CI")).toBoolean()) {
// include(":tests:native-impl-test")
// }