controls-kt/controls-storage/build.gradle.kts

29 lines
549 B
Plaintext
Raw Normal View History

2022-01-14 21:47:48 +03:00
plugins {
2022-08-02 09:46:31 +03:00
id("space.kscience.gradle.mpp")
2022-01-14 21:47:48 +03:00
`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{
2022-08-02 09:46:31 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2022-01-18 18:25:40 +03:00
}