32 lines
707 B
Groovy
32 lines
707 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.2.51'
|
|
}
|
|
|
|
group 'io.github.wulkanowy'
|
|
version '0-1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
implementation 'pl.droidsonroids:jspoon:1.3.2'
|
|
implementation 'pl.droidsonroids.retrofit2:converter-jspoon:1.3.2'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|