mirror of
https://github.com/tadfisher/gradle2nix.git
synced 2026-01-11 23:40:37 -05:00
20 lines
411 B
Kotlin
20 lines
411 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://repo.gradle.org/gradle/libs-releases") }
|
|
}
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
}
|
|
|
|
include(
|
|
":app",
|
|
":model",
|
|
":plugin:base",
|
|
":plugin:common",
|
|
":plugin:gradle8",
|
|
":plugin:gradle80",
|
|
":plugin:gradle81",
|
|
)
|