forked from spring-projects-experimental/spring-fu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
48 lines (46 loc) · 1.13 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
rootProject.name = "kofu"
include(
"autoconfigure-adapter",
"autoconfigure-adapter-cassandra",
"autoconfigure-adapter-context",
"autoconfigure-adapter-elasticsearch",
"autoconfigure-adapter-jackson",
"autoconfigure-adapter-jdbc",
"autoconfigure-adapter-jooq",
"autoconfigure-adapter-mongo",
"autoconfigure-adapter-mustache",
"autoconfigure-adapter-r2dbc",
"autoconfigure-adapter-redis",
"autoconfigure-adapter-security",
"autoconfigure-adapter-thymeleaf",
"autoconfigure-adapter-web-reactive",
"autoconfigure-adapter-web-servlet",
"kofu",
"kofu-cassandra",
"kofu-elasticsearch",
"kofu-jdbc",
"kofu-jooq",
"kofu-mongo",
"kofu-r2dbc",
"kofu-redis",
"kofu-templating-mustache",
"kofu-templating-thymeleaf",
"kofu-web",
"kofu-webflux",
"kofu-webmvc",
)
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.spring.io/milestone")
maven("https://repo.spring.io/snapshot")
}
resolutionStrategy {
val bootVersion: String by settings
eachPlugin {
if (requested.id.id == "org.springframework.boot") {
useModule("org.springframework.boot:spring-boot-gradle-plugin:$bootVersion")
}
}
}
}