mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
^KTIJ-31816 fixed (cherry picked from commit 0ef15e11dcc4a5df2cbbcab192ea905566670d9a) IJ-CR-147990 GitOrigin-RevId: 48d4cc3854389fe6e4c73fb086790d020799fe04
18 lines
452 B
Kotlin
18 lines
452 B
Kotlin
dependencyResolutionManagement {
|
|
|
|
// Use Maven Central and the Gradle Plugin Portal for resolving dependencies in the shared build logic (`buildSrc`) project.
|
|
@Suppress("UnstableApiUsage")
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
// Reuse the version catalog from the main build.
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "buildSrc"
|