-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsettings.gradle.kts
75 lines (66 loc) · 2.67 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
/*
* Copyright (c) 2020, 2021 Microsoft Corporation
*
* 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:
* Microsoft Corporation - initial API and implementation
* Fraunhofer Institute for Software and Systems Engineering - refactoring
* ZF Friedrichshafen AG - add dependency & reorder entries
* Fraunhofer Institute for Software and Systems Engineering - refactoring
*
*/
rootProject.name = "technology-azure"
// this is needed to have access to snapshot builds of plugins
pluginManagement {
repositories {
mavenLocal()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
mavenLocal()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
}
}
// core extensions
include(":extensions:common:azure:azure-eventgrid")
include(":extensions:common:azure:azure-resource-manager")
include(":extensions:common:azure:azure-test")
include(":extensions:common:azure:azure-blob-core")
include(":extensions:common:vault:vault-azure")
// controlplane extensions
include(":extensions:control-plane:store:asset-index-cosmos")
include(":extensions:control-plane:store:contract-definition-store-cosmos")
include(":extensions:control-plane:store:contract-negotiation-store-cosmos")
include(":extensions:control-plane:store:policy-definition-store-cosmos")
include(":extensions:control-plane:store:transfer-process-store-cosmos")
include(":extensions:control-plane:provision:provision-blob")
// dataplane extensions
include(":extensions:data-plane:data-plane-azure-storage")
include(":extensions:data-plane:store:data-plane-store-cosmos")
include(":extensions:data-plane:data-plane-azure-data-factory")
include(":extensions:data-plane-selector:data-plane-instance-store-cosmos")
// identity hub
include(":extensions:identity-hub:identity-hub-store-cosmos")
// system test modules
include(":system-tests:azure-blob-transfer-tests")
include(":system-tests:azure-data-factory-tests")
include(":system-tests:runtimes:azure-data-factory-transfer-consumer")
include(":system-tests:runtimes:azure-data-factory-transfer-provider")
include(":system-tests:runtimes:azure-storage-transfer-consumer")
include(":system-tests:runtimes:azure-storage-transfer-provider")
include(":system-tests:azure-blob-transfer-fixtures")
include(":version-catalog")