forked from eclipse-hara/hara-ddiclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
30 lines (29 loc) · 1.09 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
/*
* Copyright © 2017-2021 Kynetics LLC
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/
ext {
javaSourceCompatibility = '1.8'
retrofitVersion = '2.9.0'
okhttpVersion = '4.9.3'
slf4jVersion = '1.7.33'
app_dependencies = [
slf4j_api:"org.slf4j:slf4j-api:$slf4jVersion",
slf4j_simple:"org.slf4j:slf4j-simple:$slf4jVersion",
kotlin_stdlib: 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10',
kotlin_x: 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.1',
gson: 'com.google.code.gson:gson:2.8.9',
retrofit: "com.squareup.retrofit2:retrofit:$retrofitVersion",
retrofit_converter: "com.squareup.retrofit2:converter-gson:$retrofitVersion",
okhttp: "com.squareup.okhttp3:okhttp:${okhttpVersion}",
joda:'joda-time:joda-time:2.10.13'
]
test_dependencies = [
testng: 'org.testng:testng:7.5'
]
}