forked from eclipse-edc/Virtual-Connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
74 lines (65 loc) · 2.64 KB
/
settings.gradle.kts
File metadata and controls
74 lines (65 loc) · 2.64 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
/*
* Copyright (c) 2025 Metaform Systems, Inc.
*
* 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
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Metaform Systems, Inc. - initial API and implementation
*
*/
rootProject.name = "edc-v"
// 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/")
}
}
}
// spi
include(":spi:v-core-spi")
// core
include(":core:v-connector-core")
include(":core:negotiation-manager")
include(":core:transfer-process-manager")
// data-protocols
include(":data-protocols:dsp")
include(":data-protocols:dsp:dsp-metadata-http-api")
include(":data-protocols:dsp:dsp-2025")
include(":data-protocols:dsp:dsp-2025:dsp-http-api-configuration-2025")
include(":data-protocols:dsp:dsp-2025:dsp-catalog-2025")
include(":data-protocols:dsp:dsp-2025:dsp-catalog-2025:dsp-catalog-http-api-2025")
include(":data-protocols:dsp:dsp-2025:dsp-negotiation-2025")
include(":data-protocols:dsp:dsp-2025:dsp-negotiation-2025:dsp-negotiation-http-api-2025")
include(":data-protocols:dsp:dsp-2025:dsp-transfer-process-2025")
include(":data-protocols:dsp:dsp-2025:dsp-transfer-process-2025:dsp-transfer-process-http-api-2025")
// extensions
include(":extensions:banner-extension")
include(":extensions:negotiation-cdc-memory")
include(":extensions:transfer-process-cdc-memory")
include(":extensions:postgres-cdc")
include(":extensions:negotiation-cdc-publisher-nats")
include(":extensions:negotiation-subscriber-nats")
include(":extensions:transfer-process-cdc-publisher-nats")
include(":extensions:transfer-process-subscriber-nats")
include(":extensions:lib:nats-lib")
include(":system-tests:system-test-fixtures")
include(":system-tests:runtimes:controlplane-base")
include(":system-tests:runtimes:controlplane-memory")
include(":system-tests:runtimes:controlplane-postgres")
include(":system-tests:runtimes:issuer")
include(":system-tests:runtimes:identity-hub")
include(":system-tests:runtime-tests")
include(":system-tests:dsp-tck-tests")
include(":system-tests:extensions:v-tck-extension")
include(":system-tests:runtimes:tck:tck-controlplane-memory")
include(":system-tests:runtimes:tck:tck-controlplane-postgres")
include(":system-tests:runtimes:e2e:e2e-controlplane-memory")
include(":system-tests:runtimes:e2e:e2e-controlplane-postgres")
include(":system-tests:runtimes:e2e:e2e-dcp-controlplane-postgres")