mirror of
https://github.com/M66B/FairEmail.git
synced 2026-05-04 22:56:52 +02:00
27 lines
611 B
Groovy
27 lines
611 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "email"
|
|
|
|
include ':app', ':colorpicker', ':openpgp-api'
|
|
project(':colorpicker').projectDir = new File('colorpicker')
|
|
project(':openpgp-api').projectDir = new File('openpgp-api')
|