2023-03-02 18:33:29 +01:00
|
|
|
//
|
|
|
|
// SPDX-FileCopyrightText: 2023 The Calyx Institute
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//
|
|
|
|
|
2023-10-13 07:42:24 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://jitpack.io")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "Seedvault"
|
2024-07-25 23:55:01 +02:00
|
|
|
include(":core")
|
2023-10-13 07:42:24 +02:00
|
|
|
include(":app")
|
|
|
|
include(":contactsbackup")
|
|
|
|
include(":storage:lib")
|
|
|
|
include(":storage:demo")
|