forked from hndrs/slack-spring-boot-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
31 lines (26 loc) · 1.34 KB
/
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
rootProject.name = "SlackSpringBoot"
//starter
include "slack-spring-boot-starter"
project(":slack-spring-boot-starter").projectDir = new File("starter/slack-spring-boot-starter")
include "slack-spring-boot-autoconfigure"
project(":slack-spring-boot-autoconfigure").projectDir = new File("starter/slack-spring-boot-autoconfigure")
include "slack-spring-boot"
project(":slack-spring-boot").projectDir = new File("starter/slack-spring-boot")
//data libraries
include "slack-jackson-dto"
project(":slack-jackson-dto").projectDir = new File("data/slack-jackson-dto")
include "slack-jackson-dto-test"
project(":slack-jackson-dto-test").projectDir = new File("data/slack-jackson-dto-test-extensions")
//Clients
include "slack-api-client"
project(":slack-api-client").projectDir = new File("client/slack-api-client")
include "slack-spring-api-client"
project(":slack-spring-api-client").projectDir = new File("client/slack-spring-api-client")
include "slack-spring-test-api-client"
project(":slack-spring-test-api-client").projectDir = new File("client/slack-spring-test-api-client")
//Samples
include "slack-spring-boot-starter-sample"
project(":slack-spring-boot-starter-sample").projectDir = new File("samples/slack-spring-boot-starter-sample")
//Docs
include "slack-spring-boot-docs"
project(":slack-spring-boot-docs").projectDir = new File("docs/slack-spring-boot-docs")