forked from bloxbean/yaci-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
68 lines (61 loc) · 1.98 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
pluginManagement {
repositories {
maven { url 'https://repo.spring.io/release' }
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = 'yaci-store'
include 'applications:all'
include 'applications:utxo-indexer'
include 'applications:gateway'
include 'applications:aggregation-app'
include 'applications:admin'
include 'components:core'
include 'components:events'
include 'components:common'
include 'components:client'
include 'components:submit'
include 'components:remote'
include 'components:rocksdb'
include 'stores:blocks'
include 'stores:utxo'
include 'stores:transaction'
include 'stores:script'
include 'stores:metadata'
include 'stores:assets'
include 'stores:epoch'
include 'stores:staking'
include 'stores:mir'
include 'stores:live'
include 'stores:governance'
include 'stores-api:assets-api'
include 'stores-api:blocks-api'
include 'stores-api:epoch-api'
include 'stores-api:metadata-api'
include 'stores-api:mir-api'
include 'stores-api:script-api'
include 'stores-api:staking-api'
include 'stores-api:transaction-api'
include 'stores-api:utxo-api'
include 'stores-api:governance-api'
include 'aggregates:account'
include 'aggregates:epoch-aggr'
include ':starters:spring-boot-starter'
include ':starters:utxo-spring-boot-starter'
include ':starters:transaction-spring-boot-starter'
include ':starters:script-spring-boot-starter'
include ':starters:metadata-spring-boot-starter'
include ':starters:assets-spring-boot-starter'
include ':starters:blocks-spring-boot-starter'
include ':starters:epoch-spring-boot-starter'
include ':starters:staking-spring-boot-starter'
include ':starters:mir-spring-boot-starter'
include ':starters:live-spring-boot-starter'
include ':starters:submit-spring-boot-starter'
include ':starters:remote-spring-boot-starter'
include ':starters:account-spring-boot-starter'
include ':starters:governance-spring-boot-starter'
include ':starters:epoch-aggr-spring-boot-starter'
include ':extensions:utxo-rocksdb'
include ':extensions:account-rocksdb'