-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
69 lines (63 loc) · 1.77 KB
/
settings.gradle.kts
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
rootProject.name = "save-cloud"
dependencyResolutionManagement {
repositories {
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
content {
includeGroup("com.saveourtool.sarifutils")
includeGroup("com.saveourtool.save")
}
}
mavenCentral()
maven {
name = "saveourtool/okio-extras"
url = uri("https://maven.pkg.github.com/saveourtool/okio-extras")
credentials {
username = providers.gradleProperty("gprUser").orNull
?: System.getenv("GITHUB_ACTOR")
password = providers.gradleProperty("gprKey").orNull
?: System.getenv("GITHUB_TOKEN")
}
}
}
}
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("com.gradle.enterprise") version "3.15.1"
}
includeBuild("gradle/plugins")
include("api-gateway")
include("cosv-frontend")
include("save-backend")
include("save-orchestrator-common")
include("save-orchestrator")
include("save-frontend")
include("common")
include("save-agent")
include("save-preprocessor")
include("test-utils")
include("save-api")
include("save-api-cli")
include("authentication-service")
include("save-demo")
include("save-demo-cpg")
include("test-analysis-core")
include("save-demo-agent")
include("cosv-backend")
include("frontend-common")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
gradleEnterprise {
@Suppress("AVOID_NULL_CHECKS")
if (System.getenv("CI") != null) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}