forked from sacOO7/socketcluster-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (40 loc) · 845 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
41
42
43
44
45
46
47
48
buildscript {
repositories {
jcenter()
}
}
allprojects {
tasks.withType(JavaCompile) {
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
}
}
group = 'com.github.XDex'
version = '2.0.3'
allprojects {
repositories {
jcenter()
}
apply plugin: 'java'
apply plugin: 'maven'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.6'
}
task sourceJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allJava
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
jar {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
dependencies {
compile 'com.neovisionaries:nv-websocket-client:2.3'
compile 'org.msgpack:jackson-dataformat-msgpack:0.8.15'
}