dataforge-core/build.gradle.kts

29 lines
522 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 {
2021-03-03 11:36:22 +03:00
group = "space.kscience"
2022-03-07 16:12:01 +03:00
version = "0.5.3-dev-4"
2021-09-29 11:08:55 +03:00
repositories{
mavenCentral()
}
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-03-07 15:05:36 +03:00
apply(plugin = "maven-publish")
2021-02-07 20:58:19 +03:00
}
readme {
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
}
ksciencePublish {
2021-03-07 15:05:36 +03:00
github("dataforge-core")
space("https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven")
sonatype()
}
2021-03-05 19:27:13 +03:00
apiValidation {
2021-03-03 11:36:22 +03:00
nonPublicMarkers.add("space.kscience.dataforge.misc.DFExperimental")
2019-03-06 18:15:30 +03:00
}