2022-02-20 19:52:15 +03:00
|
|
|
rootProject.name = "numass"
|
|
|
|
|
2021-11-27 22:03:10 +03:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
|
2022-02-20 17:26:01 +03:00
|
|
|
pluginManagement {
|
|
|
|
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
2023-01-24 12:08:29 +03:00
|
|
|
id("space.kscience.gradle.project") version toolsVersion
|
|
|
|
id("space.kscience.gradle.mpp") version toolsVersion
|
|
|
|
id("space.kscience.gradle.jvm") version toolsVersion
|
|
|
|
id("space.kscience.gradle.js") version toolsVersion
|
2022-02-20 17:26:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-27 22:03:10 +03:00
|
|
|
dependencyResolutionManagement {
|
2022-02-20 17:26:01 +03:00
|
|
|
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
2021-01-19 13:24:24 +03:00
|
|
|
repositories {
|
2021-11-27 22:03:10 +03:00
|
|
|
mavenLocal()
|
2021-03-08 22:58:28 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2021-01-28 12:31:17 +03:00
|
|
|
mavenCentral()
|
2021-01-19 13:24:24 +03:00
|
|
|
}
|
2021-01-28 12:31:17 +03:00
|
|
|
|
2021-11-27 22:03:10 +03:00
|
|
|
versionCatalogs {
|
2022-02-20 17:26:01 +03:00
|
|
|
create("npmlibs") {
|
2023-01-24 12:08:29 +03:00
|
|
|
from("space.kscience:version-catalog:$toolsVersion")
|
2021-01-28 12:31:17 +03:00
|
|
|
}
|
|
|
|
}
|
2021-01-19 13:24:24 +03:00
|
|
|
}
|
|
|
|
|
2021-11-23 14:08:31 +03:00
|
|
|
include(
|
|
|
|
":numass-data-model",
|
|
|
|
":numass-analysis",
|
|
|
|
":numass-data-proto",
|
2021-11-27 22:03:10 +03:00
|
|
|
//":numass-data-server",
|
2021-11-23 14:08:31 +03:00
|
|
|
":numass-workspace",
|
2022-02-20 17:26:01 +03:00
|
|
|
":numass-model",
|
|
|
|
//":numass-detector-client"
|
2021-11-23 14:08:31 +03:00
|
|
|
)
|