Code-Guard/settings.gradle

23 lines
479 B
Groovy
Raw Normal View History

2023-06-17 18:20:19 +02:00
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://maven.graphite-official.com/releases'
}
2023-06-17 18:20:19 +02:00
}
}
2023-10-01 19:40:17 +02:00
rootProject.name = "Code Guard"
2023-06-17 18:20:19 +02:00
include ':app'