-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
39 lines (32 loc) · 1.14 KB
/
settings.gradle
File metadata and controls
39 lines (32 loc) · 1.14 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 {
apply from: "$rootDir/gradle/token-utils.gradle"
def token = fetchToken()
repositories {
maven {
name "codeartifact"
url "https://getyourguide-130607246975.d.codeartifact.eu-central-1.amazonaws.com/maven/private/"
credentials {
username "aws"
password "$token"
}
}
gradlePluginPortal()
}
}
plugins {
id 'com.getyourguide.libs.gradle.develocity.configuration' version '4.9.2'
}
rootProject.name = 'openapi-validation'
include('openapi-validation-api')
include('openapi-validation-core')
include(':spring-boot-starter:spring-boot-starter-core')
include(':spring-boot-starter:spring-boot-starter-web')
include(':spring-boot-starter:spring-boot-starter-webflux')
include(':metrics-reporter:metrics-reporter-datadog')
include(':metrics-reporter:metrics-reporter-datadog-spring-boot')
include(':examples:examples-common')
include(':examples:example-spring-boot-starter-web')
include(':examples:example-spring-boot-starter-webflux')
include(':test:openapi-web')
include(':test:openapi-webflux')
include(':test:test-utils')