-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle
More file actions
40 lines (37 loc) · 1.73 KB
/
settings.gradle
File metadata and controls
40 lines (37 loc) · 1.73 KB
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
dependencyResolutionManagement {
repositories {
mavenLocal()
maven { url = "https://nexus.drift.inera.se/repository/it-public/" }
gradlePluginPortal()
}
versionCatalogs {
libs {
from("se.inera.intyg.bom:catalog:${settings.ext.intygBomVersion}")
}
}
}
rootProject.name = 'webcert'
include ':webcert-common'
include ':webcert-persistence'
include ':notification-sender'
include ':fmb-integration'
include ':mail-stub'
include ':notification-stub'
include ':webcert-web'
include ':integration-api'
include ':servicenow-integration'
include ':webcert-logging'
include ':integration-certificate-analytics-service'
include ':integration-private-practitioner-service'
project(':webcert-common').projectDir = "$rootDir/common" as File
project(':webcert-persistence').projectDir = "$rootDir/persistence" as File
project(':notification-sender').projectDir = "$rootDir/notification-sender" as File
project(':fmb-integration').projectDir = "$rootDir/integration/fmb-integration" as File
project(':mail-stub').projectDir = "$rootDir/stubs/mail-stub" as File
project(':notification-stub').projectDir = "$rootDir/stubs/notification-stub" as File
project(':webcert-web').projectDir = "$rootDir/web" as File
project(':integration-api').projectDir = "$rootDir/integration/integration-api" as File
project(':servicenow-integration').projectDir = "$rootDir/integration/servicenow-integration" as File
project(':webcert-logging').projectDir = "$rootDir/logging" as File
project(':integration-certificate-analytics-service').projectDir = "$rootDir/integration-certificate-analytics-service" as File
project(':integration-private-practitioner-service').projectDir = "$rootDir/integration-private-practitioner-service" as File