ttnhabbridge/gradle/dependencies.gradle

31 wiersze
947 B
Groovy
Czysty Zwykły widok Historia

2017-08-13 13:38:01 +00:00
/*
* 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 = [:]
}
2017-08-15 09:23:14 +00:00
libraries.slf4j = 'org.slf4j:slf4j-api:1.7.25'
libraries.slf4jlog4j = 'org.slf4j:slf4j-log4j12:1.7.25'
2017-08-13 13:38:01 +00:00
libraries.jackson = [
'com.fasterxml.jackson.core:jackson-databind:2.9.7'
]
2018-05-01 21:02:29 +00:00
libraries.retrofit = [
'com.squareup.retrofit2:retrofit:2.5.0',
'com.squareup.retrofit2:converter-jackson:2.5.0',
'com.squareup.retrofit2:converter-scalars:2.5.0'
]
libraries.retrofit_mock = 'com.squareup.retrofit2:retrofit-mock:2.5.0'
2017-08-22 08:51:48 +00:00
libraries.mqtt_client = 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.0'
2017-08-21 04:38:35 +00:00
// test libraries
2017-08-13 13:38:01 +00:00
libraries.junit = 'junit:junit:4.12'
libraries.mockito = 'org.mockito:mockito-all:1.10.19'
2017-08-13 13:38:01 +00:00