dataforge-core/build.gradle.kts

28 lines
600 B
Plaintext
Raw Normal View History

2019-06-28 16:28:54 +03:00
plugins {
2021-02-23 17:40:28 +03:00
id("ru.mipt.npm.gradle.project")
2019-06-28 16:28:54 +03:00
}
2018-12-11 18:49:08 +03:00
allprojects {
group = "hep.dataforge"
2021-02-23 17:40:28 +03:00
version = "0.3.1"
2019-11-30 23:36:06 +03:00
2020-10-17 17:22:34 +03:00
apply<org.jetbrains.dokka.gradle.DokkaPlugin>()
2019-04-30 14:28:45 +03:00
}
2019-01-27 17:12:46 +03:00
2019-04-30 14:28:45 +03:00
subprojects {
2021-02-23 17:40:28 +03:00
apply(plugin = "ru.mipt.npm.gradle.publish")
repositories{
maven("https://dl.bintray.com/mipt-npm/kscience")
maven("https://dl.bintray.com/mipt-npm/dev")
}
2021-02-07 20:58:19 +03:00
}
readme {
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
}
ksciencePublish {
bintrayRepo = "dataforge"
githubProject = "dataforge-core"
spaceRepo = "https://maven.jetbrains.space/mipt-npm/p/df/maven"
2019-03-06 18:15:30 +03:00
}