37 lines
946 B
Plaintext
37 lines
946 B
Plaintext
buildscript {
|
|
val kotlinVersion: String by rootProject.extra("1.3.20")
|
|
val ioVersion: String by rootProject.extra("0.1.2")
|
|
val coroutinesVersion: String by rootProject.extra("1.1.1")
|
|
|
|
repositories {
|
|
//maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
|
classpath("org.jfrog.buildinfo:build-info-extractor-gradle:4+")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.jfrog.artifactory") version "4.8.1" apply false
|
|
// id("org.jetbrains.kotlin.multiplatform") apply false
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin = "maven-publish")
|
|
apply(plugin = "com.jfrog.artifactory")
|
|
|
|
group = "scientifik"
|
|
version = "0.0.3-dev-4"
|
|
|
|
repositories {
|
|
maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
if (file("artifactory.gradle").exists()) {
|
|
apply(from = "artifactory.gradle")
|
|
} |