mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-13 21:56:59 +05:30
45 lines
1.5 KiB
Kotlin
45 lines
1.5 KiB
Kotlin
/*
|
|
* Copyright © 2022 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")
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
exclusiveContent {
|
|
forRepository(::google)
|
|
filter {
|
|
includeGroup("androidx.databinding")
|
|
includeGroup("com.android")
|
|
includeGroup("com.android.tools")
|
|
includeGroup("com.android.tools.analytics-library")
|
|
includeGroup("com.android.tools.build")
|
|
includeGroup("com.android.tools.build.jetifier")
|
|
includeGroup("com.android.databinding")
|
|
includeGroup("com.android.tools.ddms")
|
|
includeGroup("com.android.tools.layoutlib")
|
|
includeGroup("com.android.tools.lint")
|
|
includeGroup("com.android.tools.utp")
|
|
includeGroup("com.google.testing.platform")
|
|
}
|
|
}
|
|
exclusiveContent {
|
|
forRepository(::gradlePluginPortal)
|
|
filter {
|
|
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")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
versionCatalogs { create("libs") { from(files("../gradle/libs.versions.toml")) } }
|
|
}
|
|
|
|
include("android-plugins")
|
|
|
|
include("kotlin-plugins")
|