-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
38 lines (35 loc) · 1.06 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
buildCache {
local {
directory = new File(rootDir, 'build-cache')
removeUnusedEntriesAfterDays = 30
}
}
rootProject.name = 'thingverse'
include 'thingverse-consul-autoconfig'
include 'thingverse-common'
include 'thingverse-logging'
include 'thingverse-monitoring'
include 'thingverse-grpc-common'
include 'thingverse-grpc-client'
include 'thingverse-api'
include 'thingverse-backend-api'
include 'thingverse-cassandra-backend'
include 'thingverse-backend'
include 'thingverse-zuul-proxy'
include 'thingverse-stress-tests'
include 'thingverse-test-cassandra-app'
include 'thingverse-coverage-reporting'
include 'thingverse-docs'
include 'thingverse-assembly'
include 'thingverse-bom'
include 'thingverse-scripts'
include 'thingverse-wrapper'
include 'thingverse-cli'
include 'thingverse-launcher'
include 'thingverse-deployment'
include 'thingverse-kubernetes'
include 'thingverse-admin'
include 'thingverse-resilience'
include 'thingverse-security'
include 'thingverse-tracing'
rootProject.children.forEach { p -> p.projectDir = file("subprojects/$p.name")}