forked from kscience/kmath
33 lines
770 B
Plaintext
33 lines
770 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
id("ru.mipt.npm.gradle.common")
|
|
id("ru.mipt.npm.gradle.native")
|
|
}
|
|
|
|
description = "Polynomial extra utilities and rational functions"
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(projects.kmathCore)
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
api(projects.testUtilsPolynomial)
|
|
api(kotlin("test"))
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
dokkaPlugin("org.jetbrains.dokka:mathjax-plugin:${versionCatalogs.named("npmlibs").findVersion("dokka").get().requiredVersion}")
|
|
}
|
|
|
|
readme {
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
// feature("TODO") { "TODO" }
|
|
}
|