-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
66 lines (45 loc) · 1.57 KB
/
settings.gradle.kts
File metadata and controls
66 lines (45 loc) · 1.57 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
66
dependencyResolutionManagement {
repositories {
mavenCentral()
maven {
url = uri("https://repository.caplin.com/repository/caplin-release")
credentials {
val caplinUsername: String? by settings
val caplinPassword: String? by settings
username =
checkNotNull(
caplinUsername ?: System.getenv("CAPLIN_USERNAME"),
) {
"Missing caplinUsername property or CAPLIN_USERNAME environment variable"
}
password =
checkNotNull(
caplinPassword ?: System.getenv("CAPLIN_PASSWORD"),
) {
"Missing caplinPassword property or CAPLIN_PASSWORD environment variable"
}
}
}
}
}
rootProject.name = "datasourcex"
include("util")
project(":util").name = "datasourcex-util"
include("reactive:core")
project(":reactive:core").name = "datasourcex-reactive-core"
include("reactive:api")
project(":reactive:api").name = "datasourcex-reactive-api"
include("reactive:java-flow")
project(":reactive:java-flow").name = "datasourcex-java-flow"
include("reactive:kotlin")
project(":reactive:kotlin").name = "datasourcex-kotlin"
include("reactive:reactivestreams")
project(":reactive:reactivestreams").name = "datasourcex-reactivestreams"
include("spring")
project(":spring").name = "spring-boot-starter-datasource"
include("version-catalog")
project(":version-catalog").name = "datasourcex-version-catalog"
include("docs")
include("examples:spring-java")
include("examples:spring-kotlin")
include("examples:spring-kotlin-chat")