forked from bertrik/ttnhabbridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
40 lines (29 loc) · 1.32 KB
/
dependencies.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
40
/*
* Contains all external references and version used in the project.
* It is not advised to use direct references in each sub-project buildscript for maintenance purposes.
* Keeping the versions here allows us to control them for the entire solution
*/
ext {
libraries = [:]
}
libraries.slf4j = 'org.slf4j:slf4j-api:1.7.32'
libraries.slf4jlog4j = 'org.slf4j:slf4j-log4j12:1.7.32'
libraries.jaxb_api = 'javax.xml.bind:jaxb-api:2.3.1'
libraries.jackson = [
'com.fasterxml.jackson.core:jackson-databind:2.13.0',
'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.0'
]
libraries.retrofit = [
'com.squareup.retrofit2:retrofit:2.9.0',
'com.squareup.retrofit2:converter-jackson:2.9.0',
'com.squareup.retrofit2:converter-scalars:2.9.0'
]
libraries.retrofit_mock = 'com.squareup.retrofit2:retrofit-mock:2.9.0'
libraries.mqtt_client = 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
// test libraries
libraries.junit = 'junit:junit:4.13.2'
libraries.mockito = 'org.mockito:mockito-core:3.12.4'
libraries.apache = ['org.apache.commons:commons-exec:1.3', 'org.apache.commons:commons-collections4:4.2']
// check libraries
libraries.spotbugs_annotations = 'com.github.spotbugs:spotbugs-annotations:4.4.1'
libraries.solar = 'net.e175.klaus:solarpositioning:0.0.9'