2023-04-06 10:03:38 +03:00
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "space.kscience"
|
|
|
|
|
|
|
|
val kmathVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
kscience{
|
|
|
|
jvm()
|
|
|
|
js()
|
2023-10-01 14:05:03 +03:00
|
|
|
native()
|
2023-04-06 10:03:38 +03:00
|
|
|
|
|
|
|
useContextReceivers()
|
|
|
|
useSerialization()
|
|
|
|
dependencies {
|
|
|
|
api("space.kscience:kmath-geometry:$kmathVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
2023-05-06 15:39:58 +03:00
|
|
|
description = "Path and trajectory optimization"
|
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2023-04-06 10:03:38 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
}
|