forked from kscience/kmath
24 lines
566 B
Plaintext
24 lines
566 B
Plaintext
/*
|
|
* Copyright 2018-2021 KMath contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
dependencyResolutionManagement {
|
|
val toolsVersion: String by extra
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven("https://repo.kotlin.link")
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
versionCatalogs {
|
|
create("miptNpmLibs") {
|
|
from("ru.mipt.npm:version-catalog:$toolsVersion")
|
|
}
|
|
}
|
|
}
|