2018-05-02 22:32:20 +03:00
|
|
|
buildscript {
|
2018-10-29 18:58:35 +03:00
|
|
|
ext.kotlin_version = '1.3.0'
|
2018-05-02 22:32:20 +03:00
|
|
|
|
|
|
|
repositories {
|
2018-09-28 21:07:42 +03:00
|
|
|
jcenter()
|
2018-05-02 22:32:20 +03:00
|
|
|
}
|
2018-09-30 17:18:04 +03:00
|
|
|
|
2018-05-02 22:32:20 +03:00
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2018-09-28 21:07:42 +03:00
|
|
|
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4+"
|
2018-05-02 22:32:20 +03:00
|
|
|
}
|
|
|
|
}
|
2018-10-26 20:14:07 +03:00
|
|
|
|
2018-09-30 17:18:04 +03:00
|
|
|
allprojects {
|
2018-09-28 21:07:42 +03:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
apply plugin: "com.jfrog.artifactory"
|
|
|
|
|
|
|
|
group = 'scientifik'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
2018-08-22 12:45:05 +03:00
|
|
|
}
|
|
|
|
|
2018-10-26 20:14:07 +03:00
|
|
|
if(file('artifactory.gradle').exists()){
|
|
|
|
apply from: 'artifactory.gradle'
|
2018-09-28 21:07:42 +03:00
|
|
|
}
|