-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsettings.gradle
66 lines (56 loc) · 1.35 KB
/
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
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
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("com.gradle.enterprise") version("3.14.1")
}
gradleEnterprise {
if (System.getenv("CI") != null || Boolean.getBoolean("CI")) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}
rootProject.name = 'today-infrastructure'
include 'infra-bom'
include 'infra-docs'
include 'infra-dependencies'
include 'today-tx'
include 'today-web'
include 'today-aspects'
include 'today-websocket'
include 'today-jcache'
include 'today-jdbc'
include 'today-core'
include 'today-core-aot'
include 'today-core-test'
include 'today-framework'
include 'today-oxm'
include 'today-aop'
include 'today-test'
include 'today-beans'
include 'today-context'
include 'today-starter'
include 'today-instrument'
include 'integration-tests'
include 'today-test-support'
include 'today-context-indexer'
// Starters
file("${rootDir}/today-starter").eachDirMatch(~/today-starter.*/) {
include "today-starter:${it.name}"
}
// Build helper
file("${rootDir}/infra-build").eachDirMatch(~/infra-.*/) {
include "infra-build:${it.name}"
}
rootProject.children.findAll {
it.name.startsWith("today-") && !it.name.startsWith("today-starter")
}.each {
it.buildFileName = "${it.name}.gradle"
}