forked from IOT-DSA/dslink-java-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (35 loc) · 1 KB
/
build.gradle
File metadata and controls
42 lines (35 loc) · 1 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
apply plugin: 'application'
apply plugin: 'java-library'
mainClassName = 'org.dsa.iot.mqtt.Main'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '0.0.2'
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
maven {
url 'http://dl.bintray.com/andsel/maven'
}
}
dependencies {
implementation 'org.iot-dsa:dslink:0.20.1'
implementation 'org.iot-dsa:commons:0.20.1'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.60'
implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.0'
implementation ('io.moquette:moquette-broker:0.11') {
exclude group: "io.netty"
exclude group: "log4j"
exclude group: "org.slf4j"
}
testImplementation 'junit:junit:4.12'
}
run {
args System.getProperty("exec.args", "").split()
workingDir project.buildDir
}
applicationDistribution.from new File(project.projectDir, "/dslink.json")
wrapper {
gradleVersion = '4.10.2'
}