-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (25 loc) · 981 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
plugins {
id 'java'
}
group 'de.fulib'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://mvnrepository.com/artifact/io.moquette/moquette-broker'}
maven { url "https://repo.eclipse.org/content/repositories/paho-snapshots/" }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.fulib:fulibYaml:1.0.+'
testCompile 'org.fulib:fulib:1.0.+'
testCompile 'org.fulib:fulibTools:1.0.+'
compile 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.+'
compile 'io.moquette:moquette-broker:0.+'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.1'
compile 'com.sparkjava:spark-core:2.7.2'
compile 'com.mashape.unirest:unirest-java:1.4.9'
}