diff options
author | Edoardo La Greca | 2025-08-18 21:09:11 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-18 21:09:11 +0200 |
commit | 7341ead2aade10ea1b833e94275277658741883a (patch) | |
tree | 46495f24c54278d50aa0da5046822fbe502f3f14 /settings.gradle.kts | |
parent | 1e50cf9c224d03896f176f3718ff80ef1659e9c2 (diff) |
switch to multi-module project structure
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r-- | settings.gradle.kts | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts index 4fb307b..1344179 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,27 @@ +// 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 "0.8.0" } + +// 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 = "ninekt" -include("ninekt.demo")
\ No newline at end of file +include("lib") +include("demo")
\ No newline at end of file |