forked from eclipse-tractusx/tractusx-edc
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
174 lines (156 loc) · 7.05 KB
/
settings.gradle.kts
File metadata and controls
174 lines (156 loc) · 7.05 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
* Copyright (c) 2023 Contributors to the Eclipse Foundation
* Copyright (c) 2026 Cofinity-X GmbH
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available 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
*/
rootProject.name = "tractusx-edc"
// this is needed to have access to snapshot builds of plugins
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven {
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}
}
dependencyResolutionManagement {
repositories {
mavenLocal()
maven {
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
mavenCentral()
}
versionCatalogs {
create("stableLibs") {
from(files("./gradle/libs.stable.versions.toml"))
}
}
}
// spi modules
include(":spi:callback-spi")
include(":spi:edr-spi")
include(":spi:core-spi")
include(":spi:tokenrefresh-spi")
include(":spi:bdrs-client-spi")
include(":spi:dataflow-spi")
include(":spi:dcp-spi")
include(":spi:did-document-service-spi")
// core modules
include(":core:edr-core")
include(":core:json-ld-core")
include(":core:json-ld-cx")
include(":core:core-utils")
// extensions - control plane
include(":edc-extensions:bpn-validation")
include(":edc-extensions:bpn-validation:bpn-validation-api")
include(":edc-extensions:bpn-validation:bpn-validation-spi")
include(":edc-extensions:bpn-validation:bpn-validation-core")
include(":edc-extensions:bpn-validation:business-partner-store-sql")
include(":edc-extensions:migrations:postgresql-migration-lib")
include(":edc-extensions:migrations:connector-migration")
include(":edc-extensions:migrations:control-plane-migration")
include(":edc-extensions:migrations:data-plane-migration")
include(":edc-extensions:tokenrefresh-handler")
include(":edc-extensions:bdrs-client")
include(":edc-extensions:provision-additional-headers")
include(":edc-extensions:event-subscriber")
include(":edc-extensions:edr:edr-api-v2")
include(":edc-extensions:edr:edr-callback")
include(":edc-extensions:edr:edr-index-lock-sql")
include(":edc-extensions:cx-policy")
include(":edc-extensions:cx-policy-legacy")
include(":edc-extensions:dcp:cx-dcp")
include(":edc-extensions:dcp:tx-dcp")
include(":edc-extensions:dcp:tx-dcp-sts-div")
include(":edc-extensions:dcp:verifiable-presentation-cache")
include(":edc-extensions:data-flow-properties-provider")
include(":edc-extensions:validators:empty-asset-selector")
include(":edc-extensions:log4j2-monitor")
include(":edc-extensions:connector-discovery:connector-discovery-api")
include(":edc-extensions:connector-discovery:cx-connector-discovery")
include(":edc-extensions:dataspace-protocol")
include(":edc-extensions:dataspace-protocol:cx-dataspace-protocol")
include(":edc-extensions:dataspace-protocol:dataspace-protocol-core")
include(":edc-extensions:did-document:did-document-service-self-registration")
include(":edc-extensions:did-document:did-document-service-div")
include(":edc-extensions:agreements")
include(":edc-extensions:agreements:retirement-evaluation-core")
include(":edc-extensions:agreements:retirement-evaluation-api")
include(":edc-extensions:agreements:retirement-evaluation-spi")
include(":edc-extensions:agreements:retirement-evaluation-store-sql")
// extensions - data plane
include(":edc-extensions:dataplane:dataplane-proxy:edc-dataplane-proxy-consumer-api")
include(":edc-extensions:dataplane:dataplane-util")
include(":edc-extensions:dataplane:dataplane-proxy:dataplane-proxy-http")
include(":edc-extensions:dataplane:dataplane-token-refresh:token-refresh-core")
include(":edc-extensions:dataplane:dataplane-token-refresh:token-refresh-api")
include(":edc-extensions:dataplane:dataplane-proxy:dataplane-public-api-v2")
include(":edc-extensions:dataplane:dataflow:dataflow-api")
include(":edc-extensions:dataplane:dataflow:dataflow-service")
include(":edc-extensions:non-finite-provider-push:non-finite-provider-push-spi")
include(":edc-extensions:non-finite-provider-push:non-finite-provider-push-core")
include(":edc-extensions:agreements-bpns")
include(":edc-extensions:agreements-bpns:bpns-evaluation-core")
include(":edc-extensions:agreements-bpns:bpns-evaluation-store-sql")
include(":edc-extensions:agreements-bpns:bpns-evaluation-spi")
include(":edc-extensions:token-interceptor")
include(":edc-extensions:single-participant-vault")
// test modules
include(":edc-tests:e2e-fixtures")
include(":edc-tests:e2e:bpn-event-tests")
include(":edc-tests:e2e:catalog-tests")
include(":edc-tests:e2e:cloud-transfer-tests")
include(":edc-tests:e2e:edc-dataplane-tokenrefresh-tests")
include(":edc-tests:e2e:edr-api-tests")
include(":edc-tests:e2e:end2end-transfer-cloud")
include(":edc-tests:e2e:management-tests")
include(":edc-tests:e2e:iatp-tests")
include(":edc-tests:e2e:policy-tests")
include(":edc-tests:e2e:transfer-tests")
include("edc-tests:e2e:discovery-tests")
include(":edc-tests:e2e:dcp-tck-tests")
include(":edc-tests:e2e:dsp-compatibility-tests")
include(":edc-tests:compatibility-tests")
include(":edc-tests:runtime:dataplane-cloud")
include(":edc-tests:runtime:runtime-dsp")
include(":edc-tests:runtime:iatp:iatp-extensions")
include(":edc-tests:runtime:iatp:runtime-memory-iatp-div-ih")
include(":edc-tests:runtime:iatp:runtime-memory-iatp-ih")
include(":edc-tests:runtime:iatp:runtime-memory-sts")
include(":edc-tests:runtime:mock-connector")
include(":edc-tests:runtime:runtime-postgresql")
include(":edc-tests:runtime:runtime-dcp-tck")
include("edc-tests:runtime:runtime-discovery:runtime-discovery-base")
include("edc-tests:runtime:runtime-discovery:runtime-discovery-no-protocols")
include("edc-tests:runtime:runtime-discovery:runtime-discovery-with-dsp-v08")
include("edc-tests:runtime:runtime-compatibility:stable:extensions")
include("edc-tests:runtime:runtime-compatibility:stable:connector-stable")
include("edc-tests:runtime:runtime-compatibility:snapshot:connector-snapshot")
// modules for controlplane artifacts
include(":edc-controlplane")
include(":edc-controlplane:edc-controlplane-base")
include(":edc-controlplane:edc-runtime-memory")
include(":edc-controlplane:edc-controlplane-postgresql-hashicorp-vault")
include(":edc-controlplane:edc-controlplane-construct-x:con-x-controlplane-postgresql-hashicorp-vault")
// modules for dataplane artifacts
include(":edc-dataplane")
include(":edc-dataplane:edc-dataplane-base")
include(":edc-dataplane:edc-dataplane-hashicorp-vault")
include(":edc-dataplane:edc-dataplane-construct-x:con-x-dataplane-postgresql-hashicorp-vault")
include(":samples:testing-with-mocked-connector")