-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (22 loc) · 895 Bytes
/
build.gradle
File metadata and controls
29 lines (22 loc) · 895 Bytes
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
apply plugin: 'java'
apply plugin: 'maven'
group = 'com.xeiam.xchange'
version = '4.0.0-SNAPSHOT'
description = """XChange Poloniex"""
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
maven { url "https://oss.sonatype.org/content/groups/public/" }
maven { url "http://repo.marketcetera.org/maven" }
maven { url "http://audiobox.keytwo.net" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile(group: 'com.xeiam.xchange', name: 'xchange-core', version:'4.0.0-SNAPSHOT') {
exclude(module: 'Java-WebSocket')
}
compile group: 'com.pusher', name: 'pusher-java-client', version:'0.3.1'
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version:'1.7.12'
testCompile group: 'org.easytesting', name: 'fest-assert-core', version:'2.0M10'
}