-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
55 lines (42 loc) · 1.17 KB
/
settings.gradle.kts
File metadata and controls
55 lines (42 loc) · 1.17 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
rootProject.name = "Robocode Tank Royale"
// Lib
include("lib:common")
include("lib:client")
include("lib:intent-diagnostics")
// Booter
include("booter")
// Server
include("server")
// Recorder
include("recorder")
// GUI
include("gui")
// Bettle Runner
include("runner")
// Bot API
include("bot-api:java")
include("bot-api:dotnet")
include("bot-api:dotnet:schema")
include("bot-api:python")
include("bot-api:typescript")
// Bot API test bots (instrumented bots used by runner integration tests)
include("bot-api:tests")
// Sample Bots archives
include("sample-bots:java")
include("sample-bots:csharp")
include("sample-bots:python")
include("sample-bots:typescript")
// Docs
include("docs-build")
// Check dependencies with this command: gradlew dependencyUpdates
dependencyResolutionManagement {
versionCatalogs {
create("testLibs") {
from(files("gradle/test-libs.versions.toml"))
}
}
}
// Disable parallel execution if the dependencyUpdates task is being run (it doesn't support parallel builds)
if (gradle.startParameter.taskNames.any { it.contains("dependencyUpdates") }) {
gradle.startParameter.isParallelProjectExecutionEnabled = false
}