forked from sklintyg/webcert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
40 lines (36 loc) · 1.68 KB
/
settings.gradle
File metadata and controls
40 lines (36 loc) · 1.68 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
pluginManagement {
repositories {
mavenLocal()
maven { url "https://nexus.drift.inera.se/repository/it-public/" }
gradlePluginPortal()
}
}
rootProject.name = 'webcert'
include ':webcert-common'
include ':webcert-persistence'
include ':notification-sender'
include ':pp-integration'
include ':fmb-integration'
include ':tak-integration'
include ':kundportalen-integration'
include ':fk-stub'
include ':intygstjanst-stub'
include ':mail-stub'
include ':notification-stub'
include ':webcert-web'
include ':webcert-liquibase-runner'
include ':webcert-protractor'
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(':pp-integration').projectDir = "$rootDir/integration/pp-integration" as File
project(':fmb-integration').projectDir = "$rootDir/integration/fmb-integration" as File
project(':tak-integration').projectDir = "$rootDir/integration/tak-integration" as File
project(':kundportalen-integration').projectDir = "$rootDir/integration/kundportalen-integration" as File
project(':fk-stub').projectDir = "$rootDir/stubs/fk-stub" as File
project(':intygstjanst-stub').projectDir = "$rootDir/stubs/intygstjanst-stub" 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(':webcert-liquibase-runner').projectDir = "$rootDir/tools/liquibase-runner" as File
project(':webcert-protractor').projectDir = "$rootDir/test" as File