2018-11-20 22:09:07 +03:00
|
|
|
buildscript {
|
2018-11-21 09:55:39 +03:00
|
|
|
extra["kotlinVersion"] = "1.3.10"
|
|
|
|
|
|
|
|
val kotlinVersion: String by extra
|
2018-11-20 22:09:07 +03:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
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 {
|
|
|
|
id("com.jfrog.artifactory") version "4.8.1" apply false
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply(plugin = "maven-publish")
|
|
|
|
apply(plugin = "com.jfrog.artifactory")
|
|
|
|
|
|
|
|
group = "scientifik"
|
|
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
}
|
|
|
|
|
|
|
|
if(file("artifactory.gradle").exists()){
|
|
|
|
apply(from = "artifactory.gradle")
|
|
|
|
}
|