-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
57 lines (49 loc) · 2.03 KB
/
settings.gradle.kts
File metadata and controls
57 lines (49 loc) · 2.03 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
/*
* 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/")
}
}
}
// extensions
include(":extensions:control-plane:tasks:listener:tasks-store-poll-executor")
//include(":extensions:control-plane:tasks:subscriber:negotiation-tasks-subscriber-nats")
//include(":extensions:control-plane:tasks:subscriber:transfer-tasks-subscriber-nats")
include(":extensions:common:banner-extension")
// lib
include(":system-tests:system-test-fixtures")
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:extensions:v-tasks-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-controlplane-postgres-nats")
include(":system-tests:runtimes:e2e:e2e-dcp-controlplane-postgres")
// BOM modules ----------------------------------------------------------------
include(":dist:bom:virtual-controlplane-base-bom")
include(":dist:bom:virtual-controlplane-memory-bom")
include(":dist:bom:virtual-controlplane-feature-dcp-bom")
include(":dist:bom:virtual-controlplane-feature-sql-bom")
include(":dist:bom:virtual-controlplane-feature-nats-bom")