2021-05-21 11:47: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
2024-10-04 14:55:15 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2021-05-21 11:47:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Symja integration module"
|
|
|
|
|
2024-10-04 14:55:15 +03:00
|
|
|
kscience{
|
|
|
|
jvm()
|
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
api("org.matheclipse:matheclipse-core:3.0.0")
|
|
|
|
|
|
|
|
api(project(":kmath-core"))
|
2021-05-29 11:50:16 +03:00
|
|
|
}
|
|
|
|
|
2024-10-04 14:55:15 +03:00
|
|
|
|
2021-05-21 11:47:35 +03:00
|
|
|
}
|
|
|
|
|
2024-10-04 14:55:15 +03:00
|
|
|
|
2021-05-21 11:47:35 +03:00
|
|
|
readme {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2021-05-21 11:47:35 +03:00
|
|
|
}
|