Convert settings and dependencies to .gradle.kts.

This commit is contained in:
Greyson Parrelli
2023-11-27 08:47:47 -05:00
committed by Cody Henthorne
parent ac5d0bf8a3
commit 30e9cf9dc8
6 changed files with 332 additions and 332 deletions

View File

@@ -1,23 +0,0 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "build-logic"
include ':plugins'
include ':tools'
apply from: '../dependencies.gradle'

View File

@@ -0,0 +1,23 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "build-logic"
include(":plugins")
include(":tools")
apply(from = "../dependencies.gradle.kts")