Files
openide/plugins/kotlin/project-wizard/tests/testData/gradleNewProjectWizard/multiModuleProjectEmptyKts/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

26 lines
1.0 KiB
Kotlin

// The settings file is the entry point of every Gradle build.
// Its primary purpose is to define the subprojects.
// It is also used for some aspects of project-wide configuration, like managing plugins, dependencies, etc.
// https://docs.gradle.org/current/userguide/settings_file_basics.html
dependencyResolutionManagement {
// Use Maven Central as the default repository (where Gradle will download dependencies) in all subprojects.
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
}
}
plugins {
// Use the Foojay Toolchains plugin to automatically download JDKs required by subprojects.
id("org.gradle.toolchains.foojay-resolver-convention") version "FOOJAY_VERSION"
}
// Include the `app` and `utils` subprojects in the build.
// If there are changes in only one of the projects, Gradle will rebuild only the one that has changed.
// Learn more about structuring projects with Gradle - https://docs.gradle.org/8.7/userguide/multi_project_builds.html
include(":app")
include(":utils")
rootProject.name = "project"