forked from wilau2/cs-games-2018-relay-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
38 lines (31 loc) · 878 Bytes
/
settings.gradle
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
rootProject.name = 'infrastructure'
include 'authorization'
include 'config-server'
include 'eureka-server'
include 'zuul-server'
include 'communication'
task AuthorizationDocker{
new File("./authorization/AuthorizationDocker.txt").text = "
//content to go the docker file
"
}
task CommunicatoinDocker{
new File("./communication/CommunicationDocker.txt").text = "
//content to go the docker file
"
}
task ConfigServerDocker{
new File("./config-server/ConfigServerDocker.txt").text = "
//content to go the docker file
"
}
task EurekaServer{
new File("./eureka-server/EurekaServerDocker.txt").text = "
//content to go the docker file
"
}
task ZuulServer{
new File("./zuul-server/ZuulServerDocker.txt").text = "
//content to go the docker file
"
}