-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
37 lines (32 loc) · 966 Bytes
/
settings.gradle.kts
File metadata and controls
37 lines (32 loc) · 966 Bytes
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
plugins {
id("com.gradle.enterprise") version("3.14.1")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven {
url = uri("https://central.sonatype.com/repository/maven-snapshots")
mavenContent {
snapshotsOnly()
}
}
}
}
gradleEnterprise {
if (System.getenv("CI") != null) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}
rootProject.name = "openapi-processor-base"
include("openapi-processor-core")
include("openapi-processor-core-parser-api")
//include("openapi-processor-core-parser-internal")
include("openapi-processor-core-parser-swagger")
include("openapi-processor-core-parser-openapi4j")
include("openapi-processor-test")
include("openapi-processor-test-api")
System.setProperty("sonar.gradle.skipCompile", "true")