2019-02-11 17:03:45 +03:00
|
|
|
plugins {
|
|
|
|
idea
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile(kotlin("stdlib-jdk8"))
|
2019-02-19 16:28:07 +03:00
|
|
|
compile("hep.dataforge:dataforge-maths")
|
2019-02-11 17:03:45 +03:00
|
|
|
compile(project(":numass-core:numass-data-api"))
|
|
|
|
|
|
|
|
// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
|
|
|
|
compile(group = "org.apache.commons", name = "commons-collections4", version = "4.3")
|
|
|
|
|
|
|
|
}
|