2021-03-23 18:13:35 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2018-2021 KMath contributors.
|
|
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
|
|
*/
|
|
|
|
|
2020-10-12 16:26:03 +03:00
|
|
|
plugins {
|
2021-04-14 12:40:26 +03:00
|
|
|
kotlin("jvm")
|
|
|
|
id("ru.mipt.npm.gradle.common")
|
2020-10-12 16:26:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-11-29 20:55:42 +03:00
|
|
|
implementation("com.github.breandan:kaliningraph:0.1.4")
|
|
|
|
implementation("com.github.breandan:kotlingrad:0.4.0")
|
2020-10-12 16:26:03 +03:00
|
|
|
api(project(":kmath-ast"))
|
|
|
|
}
|
2021-01-30 20:23:15 +03:00
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2021-01-30 20:23:15 +03:00
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
|
|
}
|