2018-05-02 22:32:20 +03:00
|
|
|
buildscript {
|
2018-08-21 21:27:46 +03:00
|
|
|
ext.kotlin_version = '1.2.61'
|
2018-05-02 22:32:20 +03:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-22 12:45:05 +03:00
|
|
|
subprojects{
|
|
|
|
apply plugin: 'maven'
|
|
|
|
}
|
|
|
|
|
2018-04-22 15:58:20 +03:00
|
|
|
group = 'scientifik'
|
2018-08-24 20:55:44 +03:00
|
|
|
version = '0.0.1-SNAPSHOT'
|
2018-04-22 15:58:20 +03:00
|
|
|
|