-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
38 lines (32 loc) · 1.22 KB
/
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
buildscript {
ext.kotlin_version = '1.2.61'
ext.retrofit_version = '2.9.0'
ext.moshi_version = '1.7.0'
ext.junit_version = '5.2.0'
ext.wiremock_version = '2.19.0'
ext.awaitility_version = '3.1.5'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
description = 'fyydlin: A REST client for fyyd.de, written in Kotlin'
apply plugin: 'kotlin'
apply plugin: 'idea'
repositories {
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "io.reactivex.rxjava3:rxjava:3.0.11"
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:adapter-rxjava3:$retrofit_version"
implementation "com.squareup.retrofit2:converter-moshi:$retrofit_version"
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
testCompile "org.awaitility:awaitility:$awaitility_version"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
testRuntime "org.junit.jupiter:junit-jupiter-engine:$junit_version"
testImplementation "com.github.tomakehurst:wiremock:$wiremock_version"
}