-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsettings.gradle
47 lines (43 loc) · 1.11 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
pluginManagement {
includeBuild 'terracotta-gradle-plugins'
}
rootProject.name = 'terracotta-core'
include('build-data')
//include('build-parent')
include('common-spi')
include('tc-messaging')
include('test-common')
include('common')
include('configuration-provider')
include('server-spi')
include('server-bootstrap')
include('tc-server')
include('terracotta')
include('management')
include('connection-impl')
include('default-configuration')
include('examples:clustered-map:client')
include('examples:clustered-map:common')
include('examples:clustered-map:server')
include('examples:extended-server')
include('test-interfaces')
include('galvan')
include('galvan-support')
include('tc-client')
include('passthrough-server')
include('tripwire:appenders')
include('tripwire:plugin')
include('client-runtime')
include('server-runtime')
include('client-api')
include('common-api')
include('server-api')
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven {
url = 'https://repo.terracotta.org/maven2'
}
}
}