forked from gazbert/bxbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
24 lines (20 loc) · 822 Bytes
/
build.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
apply plugin: 'org.springframework.boot'
bootRepackage {
mainClass = 'com.gazbert.bxbot.BXBot'
}
dependencies {
compile project(':bxbot-trading-api')
compile project(':bxbot-strategy-api')
compile project(':bxbot-exchange-api')
compile project(':bxbot-strategies')
compile project(':bxbot-exchanges')
compile project(':bxbot-domain-objects')
compile project(':bxbot-xml-datastore')
compile project(':bxbot-repository')
compile project(':bxbot-core')
compile project(':bxbot-rest-api')
// Add your (optional) Trading Strategies here
// compile group: 'com.gazbert.bxbot', name: 'bxbot-strategies', version: '3.0-SNAPSHOT'
// Add your (optional) Exchange Adapters here
// compile group: 'com.your.stuff', name: 'your-custom-exchanges', version: '1.0-SNAPSHOT'
}