-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle
31 lines (21 loc) · 959 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
rootProject.name = 'd3-eth'
include 'eth'
project(':eth').projectDir = 'eth' as File
include 'eth-deposit'
project(':eth-deposit').projectDir = 'eth-deposit' as File
include 'eth-erc20-registration'
project(':eth-erc20-registration').projectDir = 'eth-erc20-registration' as File
include 'eth-registration'
project(':eth-registration').projectDir = 'eth-registration' as File
include 'eth-relay'
project(':eth-relay').projectDir = 'eth-relay' as File
include 'eth-testing-endpoints'
project(':eth-testing-endpoints').projectDir = 'eth-testing-endpoints' as File
include 'eth-vacuum'
project(':eth-vacuum').projectDir = 'eth-vacuum' as File
include 'eth-withdrawal'
project(':eth-withdrawal').projectDir = 'eth-withdrawal' as File
include 'notary-eth-integration-test'
project(':notary-eth-integration-test').projectDir = 'notary-eth-integration-test' as File
include 'test-longevity'
project(':test-longevity').projectDir = 'test-longevity' as File