-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.gradle
32 lines (23 loc) · 1.4 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
32
rootProject.name = 'lock-provider-parent'
// Core
include 'lock-provider-api'
project(':lock-provider-api').name = 'lock-provider-api'
project(':lock-provider-api').projectDir = new File(rootProject.projectDir, "lock-provider")
// Implementations
include 'lock-provider-reentrant'
project(':lock-provider-reentrant').projectDir = new File(rootProject.projectDir, "implementations/reentrant")
include 'lock-provider-hazelcast-3x'
project(':lock-provider-hazelcast-3x').projectDir = new File(rootProject.projectDir, "implementations/hazelcast-3x")
include 'lock-provider-hazelcast-4x'
project(':lock-provider-hazelcast-4x').projectDir = new File(rootProject.projectDir, "implementations/hazelcast-4x")
include 'lock-provider-hazelcast-5x'
project(':lock-provider-hazelcast-5x').projectDir = new File(rootProject.projectDir, "implementations/hazelcast-5x")
include 'lock-provider-redis'
project(':lock-provider-redis').projectDir = new File(rootProject.projectDir, "implementations/redis")
include 'lock-provider-zookeeper'
project(':lock-provider-zookeeper').projectDir = new File(rootProject.projectDir, "implementations/zookeeper")
// Example projects
include 'example-hazelcast-3x'
project(':example-hazelcast-3x').projectDir = new File(rootProject.projectDir, "examples/hazelcast-3x")
include 'example-hazelcast-5x'
project(':example-hazelcast-5x').projectDir = new File(rootProject.projectDir, "examples/hazelcast-5x")