forked from bisq-network/bisq2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
56 lines (50 loc) · 1.09 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
pluginManagement {
repositories {
gradlePluginPortal()
}
includeBuild('build-logic')
}
plugins {
id 'bisq.gradle.toolchain_resolver.ToolchainResolverPlugin'
}
toolchainManagement {
jvm {
javaRepositories {
repository("bisq_zulu") {
resolverClass = bisq.gradle.toolchain_resolver.BisqToolchainResolver
}
}
}
}
rootProject.name = 'bisq'
include 'platforms:cli-platform'
include 'platforms:common-platform'
include 'platforms:network-platform'
include 'platforms:test-platform'
include 'account'
include 'application'
include 'bisq_easy'
include 'bonded_roles'
include 'chat'
include 'common'
include 'desktop'
include 'desktop_app'
include 'desktop_app_launcher'
include 'contract'
include 'i2p'
include 'identity'
include 'i18n'
include 'offer'
include 'oracle_node'
include 'oracle_node_app'
include 'persistence'
include 'presentation'
include 'trade'
include 'rest_api_app'
include 'security'
include 'seed_node_app'
include 'settings'
include 'support'
include 'user'
includeBuild('network')
includeBuild('wallets')