numass/numass-data-proto/build.gradle.kts

21 lines
318 B
Plaintext
Raw Normal View History

2021-01-19 13:24:24 +03:00
plugins {
kotlin("jvm")
id("ru.mipt.npm.kscience")
2021-01-28 12:31:17 +03:00
id("com.squareup.wire") version "3.5.0"
2021-01-19 13:24:24 +03:00
}
2021-01-27 22:20:20 +03:00
kscience{
publish()
}
2021-01-19 13:24:24 +03:00
val dataforgeVersion: String by rootProject.extra
dependencies {
api(project(":numass-data-model"))
2021-01-29 19:23:16 +03:00
api("hep.dataforge:dataforge-io:$dataforgeVersion")
2021-01-19 13:24:24 +03:00
}
2021-01-28 12:31:17 +03:00
wire{
kotlin{}
2021-01-19 13:24:24 +03:00
}