plugins { id("ru.mipt.npm.gradle.project") } val dataforgeVersion by extra("0.5.0-dev-9") val fxVersion by extra("11") allprojects { repositories { mavenLocal() mavenCentral() jcenter() maven("https://repo.kotlin.link") maven("https://maven.jzy3d.org/releases") } group = "space.kscience" version = "0.2.0-dev-23" } subprojects { if (name.startsWith("visionforge")) { plugins.apply("maven-publish") } } ksciencePublish { github("visionforge") space() sonatype() } apiValidation { validationDisabled = true ignoredPackages.add("info.laht.threekt") }