kmath/kmath-trajectory/build.gradle.kts

22 lines
423 B
Plaintext
Raw Normal View History

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 {
2022-07-24 12:01:02 +03:00
description = "Path and trajectory optimization"
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
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
}