-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
28 lines (23 loc) · 897 Bytes
/
settings.gradle
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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
}
rootProject.name = 'httpexchange-spring-boot-starter-root'
include(":examples:loadbalancer")
include(":examples:minimal")
include(":examples:native-image")
include(":examples:processor")
include(":examples:quick-start")
include(":examples:reactive")
include(":httpexchange-processor")
include(":httpexchange-spring-boot-autoconfigure")
include(":starters:httpexchange-spring-boot-starter")
new File("${rootDir}/.githooks").eachFile(groovy.io.FileType.FILES) {
def f = new File("${rootDir}/.git/hooks")
if (f.exists() && f.isDirectory()) {
java.nio.file.Files.copy(it.toPath(), new File("${rootDir}/.git/hooks", it.name).toPath(), java.nio.file.StandardCopyOption.REPLACE_EXISTING)
}
}