forked from eclipse-apoapsis/ort-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
143 lines (133 loc) · 4.56 KB
/
settings.gradle.kts
File metadata and controls
143 lines (133 loc) · 4.56 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
* Copyright (C) 2022 The ORT Server Authors (See <https://github.com/eclipse-apoapsis/ort-server/blob/main/NOTICE>)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
// Enable type-safe project accessors, see:
// https://docs.gradle.org/current/userguide/declaring_dependencies.html#sec:type-safe-project-accessors
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "ort-server"
include(":api:v1:client")
include(":api:v1:mapping")
include(":api:v1:model")
include(":cli")
include(":clients:keycloak")
include(":components:admin-config:api-model")
include(":components:admin-config:backend")
include(":components:authorization:api-model")
include(":components:authorization:backend")
include(":components:authorization-keycloak:api-model")
include(":components:authorization-keycloak:backend")
include(":components:infrastructure-services:api-model")
include(":components:infrastructure-services:backend")
include(":components:plugin-manager:api-model")
include(":components:plugin-manager:backend")
include(":components:secrets:api-model")
include(":components:secrets:backend")
include(":compositions:secrets-routes")
include(":config")
include(":config:git")
include(":config:github")
include(":config:local")
include(":config:secret-file")
include(":config:spi")
include(":core")
include(":dao")
include(":logaccess")
include(":logaccess:spi")
include(":logaccess:loki")
include(":model")
include(":orchestrator")
include(":secrets")
include(":secrets:azure-keyvault")
include(":secrets:file")
include(":secrets:spi")
include(":secrets:scaleway")
include(":secrets:vault")
include(":services:admin-config")
include(":services:content-management")
include(":services:hierarchy")
include(":services:ort-run")
include(":services:report-storage")
include(":shared:api-mappings")
include(":shared:api-model")
include(":shared:ktor-utils")
include(":shared:ort-test-data")
include(":shared:package-curation-providers")
include(":shared:plugin-info")
include(":shared:reporters")
include(":storage")
include(":storage:azure-blob")
include(":storage:database")
include(":storage:s3")
include(":storage:spi")
include(":tasks")
include(":transport")
include(":transport:activemqartemis")
include(":transport:azure-servicebus")
include(":transport:kubernetes")
include(":transport:rabbitmq")
include(":transport:spi")
include(":transport:sqs")
include(":utils:config")
include(":utils:logging")
include(":utils:system")
include(":utils:test")
include(":workers:advisor")
include(":workers:analyzer")
include(":workers:common")
include(":workers:config")
include(":workers:evaluator")
include(":workers:notifier")
include(":workers:reporter")
include(":workers:scanner")
project(":api:v1:client").name = "api-v1-client"
project(":api:v1:mapping").name = "api-v1-mapping"
project(":api:v1:model").name = "api-v1-model"
project(":config:spi").name = "config-spi"
project(":logaccess:spi").name = "logaccess-spi"
project(":secrets:spi").name = "secrets-spi"
project(":services:admin-config").name = "admin-config-service"
project(":services:content-management").name = "content-management-service"
project(":services:hierarchy").name = "hierarchy-service"
project(":services:ort-run").name = "ort-run-service"
project(":services:report-storage").name = "report-storage-service"
project(":storage:spi").name = "storage-spi"
project(":transport:spi").name = "transport-spi"
project(":workers:config").name = "config-worker"
plugins {
// Gradle cannot access the version catalog from here, so hard-code the dependency.
id("org.gradle.toolchains.foojay-resolver-convention").version("1.0.0")
}
dependencyResolutionManagement {
repositories {
mavenLocal {
name = "localOrt"
content {
includeGroupAndSubgroups("org.ossreviewtoolkit")
}
}
mavenCentral()
}
versionCatalogs {
create("ktorLibs") {
from("io.ktor:ktor-version-catalog:3.3.3")
}
create("ortLibs") {
from("org.ossreviewtoolkit:version-catalog:72.1.0")
}
}
}