Files
dev.msfjarvis.claw.android/settings.gradle.kts
T
renovate[bot]GitHubrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
976ed3b31a chore(deps): update plugin com.gradle.develocity to v4.4.2 (#1174)
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| com.gradle.develocity | `4.4.1` → `4.4.2` |
![age](https://developer.mend.io/api/mc/badges/age/maven/com.gradle.develocity:com.gradle.develocity.gradle.plugin/4.4.2?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.gradle.develocity:com.gradle.develocity.gradle.plugin/4.4.1/4.4.2?slim=true)
|

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/msfjarvis/compose-lobsters).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTQuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE5NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-26 15:16:49 +00:00

103 lines
3.6 KiB
Kotlin

/*
* Copyright © Harsh Shandilya.
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
exclusiveContent {
forRepository { google { mavenContent { releasesOnly() } } }
filter {
includeGroup("androidx.annotation")
includeGroup("androidx.baselineprofile")
includeGroup("androidx.benchmark")
includeGroup("androidx.databinding")
includeGroupAndSubgroups("androidx.navigation")
includeGroup("com.google.testing.platform")
includeGroupAndSubgroups("com.android")
}
}
exclusiveContent {
forRepository { gradlePluginPortal() }
filter {
includeModule("com.mikepenz.aboutlibraries.plugin", "aboutlibraries-plugin")
includeModule(
"com.mikepenz.aboutlibraries.plugin.android",
"com.mikepenz.aboutlibraries.plugin.android.gradle.plugin",
)
includeModule("com.github.ben-manes", "gradle-versions-plugin")
includeModule("org.gradle.android.cache-fix", "org.gradle.android.cache-fix.gradle.plugin")
includeModule("gradle.plugin.org.gradle.android", "android-cache-fix-gradle-plugin")
includeModule("dev.iurysouza.modulegraph", "dev.iurysouza.modulegraph.gradle.plugin")
includeModule("dev.iurysouza", "modulegraph")
includeModule(
"com.jraska.module.graph.assertion",
"com.jraska.module.graph.assertion.gradle.plugin",
)
includeModule("com.gradle", "develocity-gradle-plugin")
includeModule("com.gradle.develocity", "com.gradle.develocity.gradle.plugin")
includeModule("com.jraska.module.graph.assertion", "plugin")
includeModule(
"org.gradle.toolchains.foojay-resolver-convention",
"org.gradle.toolchains.foojay-resolver-convention.gradle.plugin",
)
includeModule("org.gradle.toolchains", "foojay-resolver")
}
}
includeBuild("build-logic")
mavenCentral { mavenContent { releasesOnly() } }
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
id("com.gradle.develocity") version "4.4.2"
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = if (System.getenv("GITHUB_WORKFLOW").isNullOrEmpty()) "no" else "yes"
publishing.onlyIf { !System.getenv("GITHUB_WORKFLOW").isNullOrEmpty() }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google {
mavenContent { releasesOnly() }
content {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroup("com.google.android.gms")
includeModule("com.google.android.material", "material")
includeGroup("com.google.testing.platform")
}
}
exclusiveContent {
forRepository {
maven("https://jitpack.io") {
name = "JitPack"
mavenContent { releasesOnly() }
}
}
filter { includeGroup("com.github.requery") }
}
maven("https://androidx.dev/storage/compose-compiler/repository") {
name = "Compose Compiler Snapshots"
content { includeGroup("androidx.compose.compiler") }
}
mavenCentral { mavenContent { releasesOnly() } }
}
}
rootProject.name = "Claw"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include("android", "api", "benchmark", "common", "core", "database:core", "database:impl", "model")