2018-11-20 22:09:07 +03:00
|
|
|
buildscript {
|
2019-01-16 19:13:09 +03:00
|
|
|
extra["kotlinVersion"] = "1.3.20-eap-100"
|
2019-01-04 18:12:28 +03:00
|
|
|
extra["ioVersion"] = "0.1.2"
|
2018-12-24 15:19:35 +03:00
|
|
|
extra["coroutinesVersion"] = "1.1.0"
|
2018-11-21 09:55:39 +03:00
|
|
|
|
|
|
|
val kotlinVersion: String by extra
|
2018-12-11 17:25:55 +03:00
|
|
|
val ioVersion: String by extra
|
|
|
|
val coroutinesVersion: String by extra
|
2018-11-20 22:09:07 +03:00
|
|
|
|
|
|
|
repositories {
|
2019-01-04 18:12:28 +03:00
|
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
2018-11-20 22:09:07 +03:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-11-21 09:55:39 +03:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
2018-11-20 22:09:07 +03:00
|
|
|
classpath("org.jfrog.buildinfo:build-info-extractor-gradle:4+")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
2019-01-04 18:12:28 +03:00
|
|
|
id("com.jfrog.artifactory") version "4.8.1" apply false
|
2018-12-11 17:25:55 +03:00
|
|
|
// id("org.jetbrains.kotlin.multiplatform") apply false
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply(plugin = "maven-publish")
|
|
|
|
apply(plugin = "com.jfrog.artifactory")
|
|
|
|
|
|
|
|
group = "scientifik"
|
2019-01-21 10:22:37 +03:00
|
|
|
version = "0.0.3-dev-3"
|
2018-12-24 15:19:35 +03:00
|
|
|
|
2019-01-04 18:12:28 +03:00
|
|
|
repositories {
|
|
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
2018-12-24 15:19:35 +03:00
|
|
|
jcenter()
|
|
|
|
}
|
2018-11-20 22:09:07 +03:00
|
|
|
}
|
|
|
|
|
2019-01-04 18:12:28 +03:00
|
|
|
if (file("artifactory.gradle").exists()) {
|
2018-11-20 22:09:07 +03:00
|
|
|
apply(from = "artifactory.gradle")
|
|
|
|
}
|