mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 21:07:04 +05:30
chore(gradle): ensure all custom repositories are named
This commit is contained in:
parent
6548f7d654
commit
13eefbba2a
1 changed files with 14 additions and 4 deletions
|
@ -51,11 +51,17 @@ pluginManagement {
|
|||
}
|
||||
}
|
||||
exclusiveContent {
|
||||
forRepository { maven("https://oss.sonatype.org/content/repositories/snapshots/") }
|
||||
forRepository {
|
||||
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
|
||||
name = "Sonatype snapshots"
|
||||
}
|
||||
}
|
||||
filter { includeGroup("dev.msfjarvis.whetstone") }
|
||||
}
|
||||
exclusiveContent {
|
||||
forRepository { maven("https://storage.googleapis.com/r8-releases/raw/main") }
|
||||
forRepository {
|
||||
maven("https://storage.googleapis.com/r8-releases/raw/main") { name = "R8 mainline" }
|
||||
}
|
||||
filter { includeModule("com.android.tools", "r8") }
|
||||
}
|
||||
includeBuild("build-logic")
|
||||
|
@ -134,11 +140,15 @@ dependencyResolutionManagement {
|
|||
}
|
||||
}
|
||||
exclusiveContent {
|
||||
forRepository { maven("https://oss.sonatype.org/content/repositories/snapshots/") }
|
||||
forRepository {
|
||||
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
|
||||
name = "Sonatype snapshots"
|
||||
}
|
||||
}
|
||||
filter { includeGroup("dev.msfjarvis.whetstone") }
|
||||
}
|
||||
exclusiveContent {
|
||||
forRepository { maven("https://jitpack.io") }
|
||||
forRepository { maven("https://jitpack.io") { name = "JitPack" } }
|
||||
filter { includeGroup("com.github.requery") }
|
||||
}
|
||||
mavenCentral()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue