2018-06-26 17:28:48 +02:00
|
|
|
buildscript {
|
2018-07-11 13:47:01 +02:00
|
|
|
ext.kotlin_version = '1.2.51'
|
2018-06-26 17:28:48 +02:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.github.wulkanowy'
|
|
|
|
version '0.1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
2018-06-27 16:21:09 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
2018-06-26 17:28:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-06-27 16:21:09 +02:00
|
|
|
implementation 'com.github.VLO-GDA:uonet-sdk:master-SNAPSHOT'
|
2018-06-26 17:28:48 +02:00
|
|
|
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
|
|
|
|
|
|
|
|
implementation 'io.reactivex:rxjava:1.1.6'
|
|
|
|
implementation 'io.reactivex:rxandroid:1.2.1'
|
|
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
|
2018-06-27 16:21:09 +02:00
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
|
2018-06-26 17:28:48 +02:00
|
|
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
|
|
}
|