mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 02:57:04 +05:30
chore(build): explicitly set maven content for repos
This commit is contained in:
parent
24a07c9600
commit
88f4f2dd5a
1 changed files with 8 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
exclusiveContent {
|
exclusiveContent {
|
||||||
forRepository { google() }
|
forRepository { google { mavenContent { releasesOnly() } } }
|
||||||
filter {
|
filter {
|
||||||
includeGroup("androidx.annotation")
|
includeGroup("androidx.annotation")
|
||||||
includeGroup("androidx.baselineprofile")
|
includeGroup("androidx.baselineprofile")
|
||||||
|
@ -80,6 +80,7 @@ dependencyResolutionManagement {
|
||||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||||
repositories {
|
repositories {
|
||||||
google {
|
google {
|
||||||
|
mavenContent { releasesOnly() }
|
||||||
content {
|
content {
|
||||||
includeGroupAndSubgroups("androidx")
|
includeGroupAndSubgroups("androidx")
|
||||||
includeGroupAndSubgroups("com.android")
|
includeGroupAndSubgroups("com.android")
|
||||||
|
@ -89,7 +90,12 @@ dependencyResolutionManagement {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exclusiveContent {
|
exclusiveContent {
|
||||||
forRepository { maven("https://jitpack.io") { name = "JitPack" } }
|
forRepository {
|
||||||
|
maven("https://jitpack.io") {
|
||||||
|
name = "JitPack"
|
||||||
|
mavenContent { releasesOnly() }
|
||||||
|
}
|
||||||
|
}
|
||||||
filter { includeGroup("com.github.requery") }
|
filter { includeGroup("com.github.requery") }
|
||||||
}
|
}
|
||||||
maven("https://androidx.dev/storage/compose-compiler/repository") {
|
maven("https://androidx.dev/storage/compose-compiler/repository") {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue