mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2024-11-16 19:49:08 +01:00
44b690beaa
Use new syntax
19 lines
379 B
Groovy
19 lines
379 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Lightning Launcher"
|
|
|
|
include ':app', ':core', ':plugin-api'
|