-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsettings.gradle
28 lines (25 loc) · 1.14 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
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/6.3/userguide/multi_project_builds.html
*/
rootProject.name = 'forklift'
include 'forklift-core'
include 'forklift-activemq'
include 'forklift-kafka'
include 'forklift-replay'
include 'forklift-retry'
include 'forklift-stats'
include 'forklift-datadog'
include 'forklift-server'
project(':forklift-core').projectDir = new File(rootDir, 'core')
project(':forklift-activemq').projectDir = new File(rootDir, 'connectors/activemq')
project(':forklift-kafka').projectDir = new File(rootDir, 'connectors/kafka')
project(':forklift-replay').projectDir = new File(rootDir, 'plugins/replay')
project(':forklift-retry').projectDir = new File(rootDir, 'plugins/retry')
project(':forklift-stats').projectDir = new File(rootDir, 'plugins/stats')
project(':forklift-datadog').projectDir = new File(rootDir, 'plugins/datadog')
project(':forklift-server').projectDir = new File(rootDir, 'server')