scanner: fix catalog match

This commit is contained in:
linsui 2025-08-02 22:18:13 +08:00 committed by Michael Pöhn
parent 9b8a334dcf
commit 5f6e59c76d
6 changed files with 58 additions and 16 deletions

View file

@ -0,0 +1,44 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
versionCatalogs {
create("core") { from(files("Core/gradle/core.versions.toml")) }
}
}
rootProject.name = 'Infomaniak Mail'
include ':app',
':Core:AppIntegrity',
':Core:Auth',
':Core:Avatar',
':Core:Coil',
':Core:Compose:Basics',
':Core:Compose:Margin',
':Core:Compose:MaterialThemeFromXml',
':Core:CrossAppLogin',
':Core:CrossAppLoginUI',
':Core:FragmentNavigation',
':Core:Legacy',
':Core:Legacy:AppLock',
':Core:Legacy:BugTracker',
':Core:Legacy:Confetti',
':Core:Legacy:Stores',
':Core:Matomo',
':Core:MyKSuite',
':Core:Network',
':Core:Network:Models',
':Core:Sentry',
':EmojiComponents',
':HtmlCleaner'