visionforge/build.gradle.kts

34 lines
672 B
Plaintext
Raw Permalink Normal View History

2019-10-07 14:52:58 +03:00
plugins {
2021-02-23 21:47:18 +03:00
id("ru.mipt.npm.gradle.project")
2022-01-07 12:29:43 +03:00
id("org.jetbrains.kotlinx.kover") version "0.5.0-RC"
2019-06-30 14:35:54 +03:00
}
2021-11-30 21:27:08 +03:00
val dataforgeVersion by extra("0.5.2")
2021-05-05 15:28:06 +03:00
val fxVersion by extra("11")
2020-11-15 15:00:54 +03:00
2022-01-07 16:56:33 +03:00
allprojects{
group = "space.kscience"
2022-01-20 11:52:58 +03:00
version = "0.2.0"
2022-01-07 16:56:33 +03:00
}
2022-01-07 12:29:43 +03:00
subprojects {
if (name.startsWith("visionforge")) apply<MavenPublishPlugin>()
2019-03-08 11:55:01 +03:00
repositories {
2021-03-01 19:10:15 +03:00
maven("https://repo.kotlin.link")
2022-01-07 12:29:43 +03:00
mavenCentral()
2021-05-05 15:28:06 +03:00
maven("https://maven.jzy3d.org/releases")
2019-03-08 11:55:01 +03:00
}
2020-10-02 19:09:25 +03:00
}
2021-08-07 11:27:57 +03:00
ksciencePublish {
2021-03-07 16:19:43 +03:00
github("visionforge")
space()
sonatype()
}
2020-10-02 19:09:25 +03:00
apiValidation {
ignoredPackages.add("info.laht.threekt")
}
2022-01-07 20:01:52 +03:00
readme.readmeTemplate = file("docs/templates/README-TEMPLATE.md")