-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathsettings.gradle
More file actions
37 lines (36 loc) · 1.06 KB
/
settings.gradle
File metadata and controls
37 lines (36 loc) · 1.06 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
rootProject.name = 'credhub'
include "applications:credhub-api"
include "backends:credhub"
include "backends:shared-backend-configuration"
include "backends:remote"
include "components:audit"
include "components:auth"
include "components:constants"
include "components:credentials"
include "components:encryption"
include "components:errors"
include "components:generate"
include "components:http-support"
include "components:management"
include "components:permissions"
include "components:string-utilities"
include "components:test-support"
include "components:time-support"
dependencyResolutionManagement {
repositories {
def artifactRepoUrl = System.getenv("ARTIFACTORY_URL")
if (artifactRepoUrl != null) {
maven {
url artifactRepoUrl
credentials {
username = System.getenv("ARTIFACTORY_USER")
password = System.getenv("ARTIFACTORY_PASS")
}
}
}
else {
mavenCentral()
gradlePluginPortal()
}
}
}