-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
23 lines (19 loc) · 856 Bytes
/
settings.gradle.kts
File metadata and controls
23 lines (19 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
rootProject.name = "kalasim"
//include(":modules:json")
//include(":modules:k5")
include(":modules:animation")
include(":modules:logistics")
include(":modules:notebook")
include(":modules:letsplot")
include(":modules:kravis")
include(":modules:benchmarks")
//having a module name that is identical to one of your imported dependencies,
// especially when the group ID is also the same, can indeed lead to issues in Gradle.
// This is because Gradle uses the combination of the group, name,
// and version (often called GAV) to uniquely identify dependencies and projects.
// If a module in your project has the same GAV identifier as an external dependency,
// it can confuse Gradle
findProject(":modules:kravis")?.name = "kravisutil"
//include(":modules:benchmarks")
//include("modules:sparksim")
//findProject(":modules:sparksim")?.name = "sparksim"