forked from rackerlabs/repose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
94 lines (93 loc) · 6.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
rootProject.name = "repose"
include 'repose-aggregator',
'repose-aggregator:artifacts:cli-utils',
'repose-aggregator:artifacts:docker',
'repose-aggregator:artifacts:experimental-filter-bundle',
'repose-aggregator:artifacts:extensions-filter-bundle',
'repose-aggregator:artifacts:filter-bundle',
'repose-aggregator:artifacts:valve',
'repose-aggregator:commons:commons-configuration',
'repose-aggregator:commons:commons-test',
'repose-aggregator:commons:commons-utilities',
'repose-aggregator:components:filters:api-validator-filter',
'repose-aggregator:components:filters:add-header-filter',
'repose-aggregator:components:filters:body-extractor-to-header-filter',
'repose-aggregator:components:filters:body-patcher-filter',
'repose-aggregator:components:filters:compression-filter',
'repose-aggregator:components:filters:cors-filter',
'repose-aggregator:components:filters:content-type-stripper-filter',
'repose-aggregator:components:filters:derp-filter',
'repose-aggregator:components:filters:destination-router-filter',
'repose-aggregator:components:filters:echo-filter',
'repose-aggregator:components:filters:exception-filter',
'repose-aggregator:components:filters:forwarded-proto-filter',
'repose-aggregator:components:filters:header-normalization-filter',
'repose-aggregator:components:filters:header-translation-filter',
'repose-aggregator:components:filters:header-user-filter',
'repose-aggregator:components:filters:herp-filter',
'repose-aggregator:components:filters:ip-user-filter',
'repose-aggregator:components:filters:iri-validator-filter',
'repose-aggregator:components:filters:keystone-v2-filter',
'repose-aggregator:components:filters:keystone-v2-basic-auth-filter',
'repose-aggregator:components:filters:merge-header-filter',
'repose-aggregator:components:filters:openstack-identity-v3-filter',
'repose-aggregator:components:filters:rate-limiting-filter',
'repose-aggregator:components:filters:regex-rbac-filter',
'repose-aggregator:components:filters:scripting-filter',
'repose-aggregator:components:filters:servlet-contract-filter',
'repose-aggregator:components:filters:simple-rbac-filter',
'repose-aggregator:components:filters:slf4j-http-logging-filter',
'repose-aggregator:components:filters:split-header-filter',
'repose-aggregator:components:filters:tightly-coupled-filter',
'repose-aggregator:components:filters:translation-filter',
'repose-aggregator:components:filters:tenant-culling-filter',
'repose-aggregator:components:filters:uri-user-filter',
'repose-aggregator:components:filters:uri-stripper-filter',
'repose-aggregator:components:filters:uri-normalization-filter',
'repose-aggregator:components:filters:url-extractor-to-header-filter',
'repose-aggregator:components:filters:valkyrie-authorization-filter',
'repose-aggregator:components:filters:versioning-filter',
'repose-aggregator:components:services:atom-feed-service:atom-feed-service-api',
'repose-aggregator:components:services:atom-feed-service:atom-feed-service-impl',
'repose-aggregator:components:services:container-configuration-service:api',
'repose-aggregator:components:services:container-configuration-service:impl',
'repose-aggregator:components:services:datastore-service:datastore-service-api',
'repose-aggregator:components:services:datastore-service:datastore-service-impl',
'repose-aggregator:components:services:health-check-service:health-check-service-api',
'repose-aggregator:components:services:health-check-service:health-check-service-impl',
'repose-aggregator:components:services:http-client-service:http-client-service-api',
'repose-aggregator:components:services:http-client-service:http-client-service-impl',
'repose-aggregator:components:services:open-tracing-service',
'repose-aggregator:components:services:phone-home-service',
'repose-aggregator:components:services:rate-limiting-service',
'repose-aggregator:components:services:uri-redaction-service:uri-redaction-service-api',
'repose-aggregator:components:services:uri-redaction-service:uri-redaction-service-impl',
'repose-aggregator:core:repose-core',
'repose-aggregator:core:repose-core-api',
'repose-aggregator:docs',
'repose-aggregator:external:jee6-schemas',
'repose-aggregator:external:pjl-compressing-filter',
'repose-aggregator:tests:mocks-servlet',
'repose-aggregator:tests:functional-test-framework',
'repose-aggregator:tests:functional-tests',
'repose-aggregator:tests:performance-test-framework',
'repose-aggregator:tests:performance-tests',
'repose-aggregator:tests:release-verification',
'repose-aggregator:tests:test-bundles:core-test-filter',
'repose-aggregator:tests:test-bundles:core-test-filter-bundle',
'repose-aggregator:tests:test-bundles:classloader-dependency-one',
'repose-aggregator:tests:test-bundles:classloader-dependency-two',
'repose-aggregator:tests:test-bundles:filter-one',
'repose-aggregator:tests:test-bundles:filter-two',
'repose-aggregator:tests:test-bundles:filter-three',
'repose-aggregator:tests:test-bundles:filter-four',
'repose-aggregator:tests:test-bundles:filter-five',
'repose-aggregator:tests:test-bundles:classloader-bundle-one',
'repose-aggregator:tests:test-bundles:classloader-bundle-two',
'repose-aggregator:tests:test-bundles:classloader-bundle-three',
'repose-aggregator:tests:test-bundles:classloader-bundle-four',
'repose-aggregator:tests:test-bundles:classloader-bundle-five',
'repose-aggregator:tests:test-bundles:second-filter',
'repose-aggregator:tests:test-bundles:second-filter-bundle',
'repose-aggregator:tests:test-bundles:busted-application-name-ear',
'repose-aggregator:tests:test-bundles:busted-web-fragment-ear'