-
Notifications
You must be signed in to change notification settings - Fork 23
/
settings.gradle.kts
39 lines (37 loc) · 1.21 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
rootProject.name = "gestalt"
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
library("android-annotation", "com.android.support:support-annotations:28.0.0")
library("gson", "com.google.code.gson:gson:2.8.5")
library("guava", "com.google.guava:guava:27.0.1-android")
library("jcip", "net.jcip:jcip-annotations:1.0")
library("slf4j-api", "org.slf4j:slf4j-api:1.7.25")
// testing
library("junit", "junit:junit:4.12")
library("logback", "ch.qos.logback:logback-classic:1.2.3")
library("mockito", "org.mockito:mockito-core:1.10.19")
}
}
}
include(
"gestalt-util",
"gestalt-di",
"gestalt-inject-java",
"gestalt-inject",
"testpack:testpack-api",
"gestalt-module",
"testpack:moduleA",
"testpack:moduleB",
"testpack:moduleC",
"testpack:moduleD",
"testpack:moduleF",
"gestalt-asset-core",
"gestalt-entity-system",
"gestalt-es-perf"
)
if (rootProject.projectDir.resolve("local.properties").exists()) {
include("gestalt-android", "gestalt-android-testbed")
} else {
println("No local.properties file found, bypassing Android elements")
}