Skip to content

Commit

Permalink
build: fix includeGroupByRegex
Browse files Browse the repository at this point in the history
  • Loading branch information
keta1 committed Oct 29, 2023
1 parent 89d61a6 commit 980a37a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ pluginManagement {
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
google() {
mavenContent {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
includeGroupByRegex("com.google.*")
includeGroupByRegex("com.android.*")
}
}
maven("https://jitpack.io") {
mavenContent {
content {
includeGroup("com.github.livefront.sealed-enum")
includeGroup("com.github.MatteoBattilana")
includeGroup("com.github.plattysoft")
}
}
maven("https://api.xposed.info/") {
mavenContent {
content {
includeGroup("de.robv.android.xposed")
}
}
mavenCentral()
}
}

Expand Down

0 comments on commit 980a37a

Please sign in to comment.