plugins { id 'org.jetbrains.kotlin.jvm' version '1.3.50' apply false } subprojects { version = "0.12.0-SNAPSHOT" group = "io.github.wulkanowy" } ext { jspoon = "1.3.2" okhttp3 = "3.12.6" retrofit = "2.6.2" threetenbp = "1.4.0" slf4j = "1.7.29" } allprojects { apply plugin: 'java' apply plugin: 'kotlin' sourceCompatibility = 1.8 compileKotlin { kotlinOptions { jvmTarget = "1.6" javaParameters = true } } repositories { mavenCentral() jcenter() maven { url "https://jitpack.io" } } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" implementation "io.reactivex.rxjava2:rxjava:2.2.14" implementation "com.squareup.okhttp3:logging-interceptor:$okhttp3" compileOnly "org.threeten:threetenbp:$threetenbp:no-tzdb" testImplementation "org.threeten:threetenbp:$threetenbp" testImplementation "com.squareup.okhttp3:mockwebserver:$okhttp3" testImplementation "junit:junit:4.12" } }