2022-01-14 21:47:48 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2022-01-18 18:25:40 +03:00
|
|
|
api(projects.controlsCore)
|
2022-01-14 21:47:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
2022-01-18 18:25:40 +03:00
|
|
|
api(projects.magix.magixApi)
|
|
|
|
api(projects.controlsMagixClient)
|
|
|
|
api(projects.magix.magixServer)
|
2022-01-14 21:47:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-18 18:25:40 +03:00
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
|
|
}
|