Files
openide/plugins/kotlin/project-wizard/tests/testData/gradleNewProjectWizard/multiModuleProjectKts/buildSrc/settings.gradle.kts
Frederik Haselmeier 6dd2d96bc3 [kotlin] Fixed spelling mistakes in the new Kotlin Gradle wizard templates found by proofreaders
^KTIJ-31816 fixed


(cherry picked from commit 0ef15e11dcc4a5df2cbbcab192ea905566670d9a)

IJ-CR-147990

GitOrigin-RevId: 48d4cc3854389fe6e4c73fb086790d020799fe04
2024-11-05 17:02:30 +00:00

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"