-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (27 loc) · 928 Bytes
/
build.gradle
File metadata and controls
34 lines (27 loc) · 928 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
30
31
32
33
34
group 'io.imont.hackathon'
version '0.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'application'
mainClassName = "io.imont.hackathon.Main"
applicationDefaultJvmArgs = ["-Dlogback.configurationFile=MY_APP_HOME/config/logback.xml"]
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
maven {
credentials {
username imontRepoUser
password imontRepoPassword
}
url "https://repo.imont.io/repository/imont-public/"
}
}
dependencies {
compile 'org.fusesource.mqtt-client:mqtt-client:1.12'
compile 'io.imont.lion:lion-client:0.1-alpha'
compile 'io.imont.hornet:hornet-basic-drivers:0.2.3-SNAPSHOT'
compile 'io.imont.hornet:hornet-lion-zigbee-network:0.2.3-SNAPSHOT'
compile "ch.qos.logback:logback-classic:1.+"
compile 'org.xerial:sqlite-jdbc-rpi:3.8.11.2'
testCompile group: 'junit', name: 'junit', version: '4.11'
}