-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle
58 lines (50 loc) · 1.66 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
/*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/6.7/userguide/multi_project_builds.html
*/
pluginManagement {
repositories {
// https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local
// Not recommended: mavenLocal()
gradlePluginPortal()
maven { url "https://repo1.maven.org/maven2/" }
mavenCentral()
}
includeBuild 'gradle-plugins'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
// https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local
// Not recommended: mavenLocal()
maven { url "https://repo1.maven.org/maven2/" }
maven { url "https://packages.confluent.io/maven/" }
mavenCentral()
}
}
rootProject.name = 'abd_vro'
include ':scripts'
include ':db-init'
include ':dev-tools'
include ':postgres'
include ':shared:persistence-model'
include ':shared:lib-bie-kafka'
include ':shared:lib-metrics'
include ':shared:lib-rabbitmq-connector'
include ':shared:lib-metrics'
include ':shared:lib-hoppy'
include ':svc-bgs-api'
include ':svc-bip-api'
include ':svc-bie-kafka'
include ':vro-streamlit'
include ':domain-xample:xample-api-controller'
include ':domain-xample:xample-shared'
include ':domain-xample:svc-xample-j'
include ':domain-xample:svc-hoppy-usage'
include ':domain-cc:cc-app'
include ':domain-ee:ee-max-cfi-app'
include ':domain-ee:ee-ep-merge-app'
include ':domain-bie-events:svc-claim-tracker'
include 'rabbitmq'