-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle
More file actions
115 lines (111 loc) · 3.58 KB
/
Copy pathsettings.gradle
File metadata and controls
115 lines (111 loc) · 3.58 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
/*
* Copyright 2015-2026 Ritense BV, the Netherlands.
*
* Licensed under EUPL, Version 1.2 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
*
* 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.
*/
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = uri("https://maven-central.storage-download.googleapis.com/maven2/") }
mavenCentral()
mavenLocal()
}
}
rootProject.name = "valtimo"
// Backend subprojects
include(
":backend",
":backend:app",
":backend:app:gzac",
":backend:admin-settings",
":backend:audit",
":backend:authorization",
":backend:building-block",
":backend:case",
":backend:changelog",
":backend:command-handling",
":backend:contract",
":backend:core",
":backend:dashboard",
":backend:data-provider",
":backend:document-generation",
":backend:document-generation:local-document-generation",
":backend:document-generation:smartdocuments",
":backend:exact-plugin",
":backend:exporter",
":backend:form",
":backend:form-flow",
":backend:form-view-model",
":backend:gradle:cve-report",
":backend:gradle:license-report",
":backend:iko",
":backend:importer",
":backend:inbox",
":backend:keycloak-iam",
":backend:localization",
":backend:logging",
":backend:mail",
":backend:mail:flowmailer",
":backend:mail:local-mail",
":backend:mail:mandrill",
":backend:mail:wordpress-mail",
":backend:milestones",
":backend:notes",
":backend:outbox",
":backend:outbox:outbox-rabbitmq",
":backend:plugin",
":backend:plugin-valtimo",
":backend:plugin-authentication",
":backend:plugin-authentication:notificaties-api-authentication",
":backend:plugin-authentication:objecten-api-authentication",
":backend:plugin-authentication:openklant-authentication",
":backend:plugin-authentication:openzaak-plugin-authentication",
":backend:process-document",
":backend:process-link",
":backend:process-link-url",
":backend:resource",
":backend:resource:local-resource",
":backend:resource:temporary-resource-storage",
":backend:search",
":backend:team",
":backend:test-utils-common",
":backend:value-resolver",
":backend:dependencies",
":backend:dependencies:valtimo-dependencies",
":backend:dependencies:valtimo-dependency-versions",
":backend:dependencies:valtimo-gzac-dependencies",
":backend:web",
":backend:widget",
":backend:zgw",
":backend:zgw:catalogi-api",
":backend:zgw:documenten-api",
":backend:zgw:documenten-api-preview",
":backend:zgw:klantinteracties-api",
":backend:zgw:notificaties-api",
":backend:zgw:object-management",
":backend:zgw:objecten-api",
":backend:zgw:objecttypen-api",
":backend:zgw:verzoek",
":backend:zgw:zaakdetails",
":backend:zgw:zaken-api",
":backend:zgw:portaaltaak",
":backend:zgw:besluiten-api"
)
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
maven { url = uri("https://maven-central.storage-download.googleapis.com/maven2/") }
mavenCentral()
mavenLocal()
}
}