forked from deepstreamIO/deepstream.io-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (31 loc) · 823 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'java'
}
// Java compatability
sourceCompatibility = 1.6
targetCompatibility = 1.6
group 'io.deepstream'
version '2.2.2'
repositories {
mavenCentral()
}
sourceSets {
testapplication {
compileClasspath += sourceSets.main.compileClasspath
}
}
task apidoc(type: Javadoc) {
options.memberLevel = JavadocMemberLevel.PUBLIC
failOnError = false
classpath += sourceSets.main.compileClasspath
source = sourceSets.main.allJava
}
dependencies {
compile 'com.google.code.gson:gson:2.6.2'
compile 'org.java-websocket:Java-WebSocket:1.3.5'
compile 'com.google.j2objc:j2objc-annotations:1.1'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "org.mockito:mockito-core:1.+"
sourceCompatibility = 1.6
targetCompatibility = 1.6
}