dataforge-core/build.gradle

34 lines
880 B
Groovy
Raw Normal View History

buildscript {
ext.kotlin_version = '1.3.0'
ext.serialization_version = '0.9.0'
ext.kotlinx_io_version = '0.1.0-beta-1'
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4+"
}
2018-09-14 12:04:53 +03:00
}
allprojects {
apply plugin: 'maven-publish'
apply plugin: "com.jfrog.artifactory"
repositories {
jcenter()
maven { url = "http://dl.bintray.com/kotlin/kotlin-eap" }
2018-09-25 22:35:28 +03:00
maven { url = "https://kotlin.bintray.com/kotlinx" }
//maven { url 'https://jitpack.io' }
2018-09-14 12:04:53 +03:00
}
group = 'hep.dataforge'
version = '0.1.1-SNAPSHOT'
2018-09-14 12:04:53 +03:00
}
if(file('aritfactory.gradle').exists()) {
apply from: 'aritfactory.gradle'
}