LibreTube/settings.gradle
imashnake0 07a01ffddb Replace classpath with plugins DSL
Replaced the old way of adding plugins to the classpath with plugins DSL: https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block.
2022-06-20 22:43:52 -04:00

19 lines
328 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LibreTube"
include ':app'