29 lines
568 B
Plaintext
29 lines
568 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.project")
|
|
}
|
|
|
|
allprojects {
|
|
group = "space.kscience"
|
|
version = "0.4.0-dev-8"
|
|
}
|
|
|
|
subprojects {
|
|
apply(plugin = "maven-publish")
|
|
}
|
|
|
|
readme {
|
|
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
|
|
}
|
|
|
|
ksciencePublish {
|
|
github("dataforge-core")
|
|
space("https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven")
|
|
sonatype()
|
|
}
|
|
|
|
apiValidation {
|
|
if(project.version.toString().contains("dev")) {
|
|
validationDisabled = true
|
|
}
|
|
nonPublicMarkers.add("space.kscience.dataforge.misc.DFExperimental")
|
|
} |