mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
19 lines
390 B
Text
19 lines
390 B
Text
|
pluginManagement {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
}
|
||
|
dependencyResolutionManagement {
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
rootProject.name = "Ladybird"
|
||
|
include("Ladybird")
|
||
|
project(":Ladybird").projectDir = file("Ladybird/Android")
|