17 lines
296 B
Plaintext
17 lines
296 B
Plaintext
plugins {
|
|
id("scientifik.mpp")
|
|
id("scientifik.publish")
|
|
}
|
|
|
|
val dataforgeVersion: String by rootProject.extra
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
commonMain{
|
|
dependencies {
|
|
api("hep.dataforge:dataforge-context:$dataforgeVersion")
|
|
}
|
|
}
|
|
}
|
|
} |