-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsettings.gradle
62 lines (60 loc) · 2.08 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
buildscript {
apply from: "dependencies.gradle"
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url "https://packages.confluent.io/maven/" }
maven { url "https://splunk.jfrog.io/splunk/ext-releases-local" }
// Needed for the Quarkus gradle plugin which is only published in the Gradle Plugin portal since Quarkus 3.6.6:
gradlePluginPortal()
}
}
rootProject.name = 'rhsm-subscriptions'
include ':api'
include ':clients-core'
include ':clients'
include ':clients:azure-marketplace-client'
include ':clients:rh-marketplace-client'
include ':clients:product-client'
include ':clients:quarkus:product-client'
include ':clients:prometheus-client'
include ':clients:quarkus:prometheus-client'
include ':clients:rbac-client'
include ':clients:quarkus:rbac-client'
include ':clients:rhsm-client'
include ':clients:subscription-client'
include ':clients:quarkus:subscription-client'
include ':clients:rh-partner-gateway-client'
include ':clients:contracts-client'
include ':clients:quarkus:contracts-client'
include ':clients:billable-usage-client'
include ':clients:export-client'
include ':clients:quarkus:export-client'
include ':swatch-model-events'
include ':swatch-model-billable-usage'
include ':swatch-common-config-workaround'
include ':swatch-common-resteasy'
include ':swatch-core'
include ':swatch-core-test'
include ':swatch-common-testcontainers'
include ':swatch-system-conduit'
include ':swatch-billable-usage'
include ':swatch-producer-aws'
include ':swatch-contracts'
include ':swatch-product-configuration'
include ':swatch-producer-azure'
include ':swatch-common-kafka'
include ':swatch-common-health'
include ':swatch-common-resteasy-client'
include ':swatch-common-panache'
include ':swatch-common-smallrye-fault-tolerance'
include ':swatch-common-splunk'
include ':swatch-common-platform-spring-boot'
include ':swatch-common-platform-quarkus'
include ':swatch-common-clock'
include ':swatch-common-export'
include ':swatch-metrics'
include ':swatch-common-trace-response'
include ':swatch-metrics-hbi'
include ':swatch-common-models'