rootProject.name = "WorkFlow" enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") pluginManagement { val toolsVersion: String by extra repositories { mavenLocal() gradlePluginPortal() mavenCentral() maven("https://repo.kotlin.link") } plugins { id("space.kscience.gradle.project") version toolsVersion id("space.kscience.gradle.mpp") version toolsVersion } } plugins { id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0" } dependencyResolutionManagement { val toolsVersion: String by extra repositories { mavenLocal() mavenCentral() maven("https://repo.kotlin.link") } versionCatalogs { create("spclibs") { from("space.kscience:version-catalog:$toolsVersion") } } } include(":workflow-core")