forked from kscience/kmath
15 lines
327 B
Plaintext
15 lines
327 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven ("http://dl.bintray.com/kotlin/kotlin-eap")
|
||
|
maven("http://java.freehep.org/maven2/")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(kotlin("stdlib"))
|
||
|
api(project(":kmath-core"))
|
||
|
api(group = "org.freehep", name = "freehep-jaida", version = "3.4.13")
|
||
|
}
|