2022-07-15 19:13:50 +03:00
|
|
|
plugins {
|
2022-09-04 20:59:30 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
}
|
|
|
|
|
|
|
|
kscience{
|
2023-02-03 19:32:53 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
2022-09-04 20:59:30 +03:00
|
|
|
native()
|
2023-02-03 19:32:53 +03:00
|
|
|
|
|
|
|
useContextReceivers()
|
|
|
|
useSerialization()
|
2022-07-15 19:13:50 +03:00
|
|
|
dependencies {
|
|
|
|
api(projects.kmath.kmathGeometry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
2023-03-19 18:39:27 +03:00
|
|
|
description = "Path and trajectory optimization (to be moved to a separate project)"
|
|
|
|
maturity = space.kscience.gradle.Maturity.DEPRECATED
|
2022-07-24 12:01:02 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
2022-07-15 19:13:50 +03:00
|
|
|
}
|