2022-03-07 16:12:01 +03:00
|
|
|
rootProject.name = "dataforge-core"
|
|
|
|
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
|
2018-12-11 18:49:08 +03:00
|
|
|
pluginManagement {
|
2022-03-07 16:12:01 +03:00
|
|
|
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
2018-12-11 18:49:08 +03:00
|
|
|
repositories {
|
2022-03-07 16:12:01 +03:00
|
|
|
mavenLocal()
|
2021-02-23 17:40:28 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2021-03-07 15:23:59 +03:00
|
|
|
mavenCentral()
|
2019-03-01 22:10:17 +03:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
2020-08-29 11:45:31 +03:00
|
|
|
|
2020-08-31 11:27:44 +03:00
|
|
|
plugins {
|
2021-02-23 17:40:28 +03:00
|
|
|
id("ru.mipt.npm.gradle.project") version toolsVersion
|
|
|
|
id("ru.mipt.npm.gradle.mpp") version toolsVersion
|
|
|
|
id("ru.mipt.npm.gradle.jvm") version toolsVersion
|
|
|
|
id("ru.mipt.npm.gradle.js") version toolsVersion
|
2018-12-11 18:49:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 16:12:01 +03:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
|
|
|
val toolsVersion: String by extra
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
versionCatalogs {
|
|
|
|
create("npmlibs") {
|
|
|
|
from("ru.mipt.npm:version-catalog:$toolsVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 18:49:08 +03:00
|
|
|
include(
|
2019-01-27 17:16:40 +03:00
|
|
|
":dataforge-meta",
|
2019-03-31 17:39:44 +03:00
|
|
|
":dataforge-io",
|
2020-12-03 13:35:19 +03:00
|
|
|
":dataforge-io:dataforge-io-yaml",
|
2019-01-27 17:16:40 +03:00
|
|
|
":dataforge-context",
|
|
|
|
":dataforge-data",
|
2019-02-01 16:38:11 +03:00
|
|
|
":dataforge-workspace",
|
2019-03-08 11:20:08 +03:00
|
|
|
":dataforge-scripting"
|
2020-08-29 11:45:31 +03:00
|
|
|
)
|