forked from eclipse-tractusx/tractusx-edc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
109 lines (96 loc) · 3.9 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
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
/**
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* 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"
// spi modules
include(":spi:callback-spi")
include(":spi:edr-spi")
include(":spi:core-spi")
include(":spi:ssi-spi")
// core modules
include(":core:edr-cache-core")
include(":core:edr-core")
include(":core:json-ld-core")
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:cx-oauth2")
include(":edc-extensions:data-encryption")
include(":edc-extensions:dataplane-selector-configuration")
include(":edc-extensions:postgresql-migration")
include(":edc-extensions:provision-additional-headers")
include(":edc-extensions:transferprocess-sftp-client")
include(":edc-extensions:transferprocess-sftp-common")
include(":edc-extensions:transferprocess-sftp-provisioner")
include(":edc-extensions:edr:edr-api")
include(":edc-extensions:edr:edr-callback")
include(":edc-extensions:edr:edr-cache-sql")
include(":edc-extensions:cx-policy")
include("edc-extensions:ssi:ssi-identity-core")
include("edc-extensions:ssi:ssi-miw-credential-client")
include("edc-extensions:ssi:jws2020-crypto-suite")
include(":edc-extensions:ssi:ssi-identity-extractor")
// test modules
include(":edc-tests:e2e-tests")
include(":edc-tests:miw-tests")
include(":edc-tests:runtime:extensions")
include(":edc-tests:runtime:runtime-memory")
include(":edc-tests:runtime:dataplane-cloud")
include(":edc-tests:runtime:runtime-memory-ssi")
include(":edc-tests:runtime:runtime-postgresql")
include(":edc-tests:runtime:runtime-postgresql-hashicorp")
include(":edc-tests:edc-dataplane:edc-dataplane-proxy-e2e")
include(":edc-tests:edc-dataplane:cloud-transfer-tests")
// modules for controlplane artifacts
include(":edc-controlplane")
include(":edc-controlplane:edc-controlplane-base")
include(":edc-controlplane:edc-runtime-memory")
include(":edc-controlplane:edc-controlplane-memory-hashicorp-vault")
include(":edc-controlplane:edc-controlplane-postgresql-azure-vault")
include(":edc-controlplane:edc-controlplane-postgresql-hashicorp-vault")
// modules for dataplane artifacts
include(":edc-dataplane")
include(":edc-dataplane:edc-dataplane-azure-vault")
include(":edc-dataplane:edc-dataplane-base")
include(":edc-dataplane:edc-dataplane-hashicorp-vault")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-consumer-api")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-spi")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-core")
include(":edc-extensions:dataplane-proxy:edc-dataplane-proxy-provider-api")
include(":samples:multi-tenancy")
// this is needed to have access to snapshot builds of plugins
pluginManagement {
repositories {
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
mavenLocal()
}
}