OIDC-Debugger/settings.gradle.kts
Radek Goláň jr. 792782785f
Initial commit
Made project
Added initial implementation of OIDC Core client
Implemented auth flow initiation
Implemented auth response validation
2025-01-02 17:58:56 +01:00

24 lines
538 B
Plaintext

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "OIDC Debugger"
include(":app")