-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (34 loc) · 839 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
group 'com.xively.relaybroker'
version '0.0.1'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
sourceCompatibility = 1.8
jar {
manifest {
attributes(
'Main-Class': 'com.xively.relaybroker.RelayBroker'
)
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "io.moquette:moquette-broker:0.10"
compile "org.slf4j:slf4j-api:1.7.5"
compile "org.slf4j:slf4j-simple:1.6.4"
compile "org.apache.httpcomponents:httpclient:4.5"
compile "org.apache.httpcomponents:httpcore:4.4"
testCompile group: 'junit', name: 'junit', version: '4.12'
}