workflow/settings.gradle.kts
2024-04-13 21:23:31 +03:00

42 lines
863 B
Plaintext

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")