-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (36 loc) · 1.18 KB
/
build.gradle
File metadata and controls
42 lines (36 loc) · 1.18 KB
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
group 'com.elcris.iot.wemo'
version '1.0.3'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://repo.eclipse.org/content/repositories/paho-releases/"
}
maven {
url "http://maven.restlet.org"
}
flatDir {
dirs 'libs'
}
}
distZip {
into(project.name+"-"+project.version) {
from '.'
include 'conf/*'
}
}
mainClassName = "com.elcris.iot.wemo.MainServer"
applicationDefaultJvmArgs = ["-XX:+UseParNewGC","-XX:+UseConcMarkSweepGC","-XX:MaxNewSize=32M","-XX:NewSize=32M","-Xms96M","-Xmx96M"]
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
//compile name : 'cybergarage-upnp-core-2.1.1'
compile group: 'org.eclipse.paho', name: 'org.eclipse.paho.client.mqttv3', version: '1.0.2'
compile group: 'org.restlet.jse', name: 'org.restlet', version: '2.3.6'
compile group: 'org.restlet.jse', name: 'org.restlet.ext.json', version: '2.3.6'
compile group: 'org.slf4j', name: 'slf4j-simple', version:'1.7.18'
compile 'com.pubnub:pubnub:3.7.5'
testCompile group: 'junit', name: 'junit', version: '4.11'
}