-
Notifications
You must be signed in to change notification settings - Fork 12
/
settings.gradle
72 lines (62 loc) · 2.74 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
65
66
67
68
69
70
71
72
/*
* This settings file was auto generated by the Gradle buildInit task
* by 'doki' at '11/26/14 3:22 PM' with Gradle 2.2
*
* The settings file is used to specify which projects to include in your build.
* In a single project build this file can be empty or even removed.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user guide at http://gradle.org/docs/2.2/userguide/multi_project_builds.html
*/
rootProject.name = 'wilma'
include 'wilma-message-search'
include 'wilma-message-search:wilma-message-search-lucene'
include 'wilma-message-search:wilma-message-search-webapp'
include 'wilma-message-search:wilma-message-search-engine'
include 'wilma-message-search:wilma-message-search-properties'
include 'wilma-message-search:wilma-message-search-domain'
for (subproject in (project(':wilma-message-search')).children){
subproject.projectDir = file("$rootDir/wilma-message-search/modules/$subproject.name")
}
include 'wilma-application'
include 'wilma-application:wilma-engine'
include 'wilma-application:wilma-message-marker'
include 'wilma-application:wilma-message-logger'
include 'wilma-application:wilma-common'
include 'wilma-application:wilma-route-engine'
include 'wilma-application:wilma-webapp'
include 'wilma-application:wilma-proxy-integration'
include 'wilma-application:wilma-core'
include 'wilma-application:wilma-domain'
include 'wilma-application:wilma-message-maintainer'
include 'wilma-application:wilma-safeguard'
include 'wilma-application:wilma-compression'
include 'wilma-application:wilma-property-validation'
include 'wilma-application:wilma-stub-configuration-parser'
include 'wilma-application:wilma-stub-configuration-domain'
include 'wilma-application:wilma-stub-configuration-support'
include 'wilma-application:wilma-properties'
include 'wilma-application:wilma-indexing'
include 'wilma-application:wilma-message-sequence'
for (subproject in (project(':wilma-application')).children){
subproject.projectDir = file("$rootDir/wilma-application/modules/$subproject.name")
}
include 'wilma-extras:bulkhead'
include 'wilma-extras:circuitBreaker'
include 'wilma-extras:lookAndSayService'
include 'wilma-extras:mockJsonService'
include 'wilma-extras:randomErrorGenerator'
include 'wilma-extras:replicator'
include 'wilma-extras:reverseProxy'
include 'wilma-extras:shortCircuit'
include 'wilma-extras:responseAutoFixer'
for (subproject in (project(':wilma-extras')).children){
subproject.projectDir = file("$rootDir/wilma-extras/$subproject.name")
}
include 'wilma-test:wilma-test-client'
include 'wilma-test:wilma-test-server'
for (subproject in (project(':wilma-test')).children){
subproject.projectDir = file("$rootDir/wilma-test/$subproject.name")
}
include 'wilma-service-api'
include 'wilma-functionaltest'