-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle
More file actions
27 lines (22 loc) · 1.02 KB
/
settings.gradle
File metadata and controls
27 lines (22 loc) · 1.02 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
plugins {
id 'eu.xenit.enterprise-conventions.oss' version '0.6.2'
}
rootProject.name = 'alfred-api'
include ':alfred-api-interface'
include ':alfred-api-impl'
include ':alfred-api-rest'
include ':alfresco'
include ':alfred-api-docker'
include ':alfred-api-integrationtests-client:model-amp'
include ':alfred-api-integrationtests-server'
include ':docs'
for (String version : ['23.1', '23.2', '23.3', '23.4', '25.1']) {
def shortVersion = version.replaceAll('\\.', '')
include ":alfred-api-impl:alfred-api-impl-$shortVersion"
include ":alfresco:$shortVersion"
include ":alfred-api-docker:docker-$shortVersion"
include ":alfred-api-integrationtests-client:alfresco:$shortVersion"
project(":alfred-api-impl:alfred-api-impl-$shortVersion").projectDir = "$rootDir/alfred-api-impl/$shortVersion" as File
project(":alfred-api-docker:docker-$shortVersion").projectDir = "$rootDir/alfred-api-docker/$shortVersion" as File
project(":alfresco:$shortVersion").projectDir = "$rootDir/alfresco/$shortVersion" as File
}