kmath/buildSrc/settings.gradle.kts

25 lines
603 B
Plaintext
Raw Normal View History

/*
* 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")
enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
val toolsVersion: String by extra
repositories {
2022-03-08 23:15:48 +03:00
mavenLocal()
maven("https://repo.kotlin.link")
mavenCentral()
2022-03-08 23:15:48 +03:00
gradlePluginPortal()
}
versionCatalogs {
create("npmlibs") {
from("ru.mipt.npm:version-catalog:$toolsVersion")
}
}
2022-03-08 23:15:48 +03:00
}